X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=index.php;h=88f82d2410f52e0f59fdfbe72e9142e53265b75d;hb=df6b25144faef3a12fd2db73ecc765ec7eb0ec65;hp=f1b2cc1e76b57f2cce5be88fc578e2fcff7745b8;hpb=d2156630c0f3e7aca93cb72c762f713e9c8bdad3;p=dylansserver.git diff --git a/index.php b/index.php index f1b2cc1..88f82d2 100644 --- a/index.php +++ b/index.php @@ -13,10 +13,10 @@ abstract class cms { public function __construct() { $config = parse_ini_file($this->config_file, true); $this->db = new mysqli( - $config[database]['domain'], - $config[database]['user'], - $config[database]['password'], - $config[database]['database']); + $config['database']['domain'], + $config['database']['user'], + $config['database']['password'], + $config['database']['database']); if (mysqli_connect_errno()) { echo "Problem connecting to database: "; echo mysqli_connect_error(); @@ -93,7 +93,7 @@ abstract class cms { $scripts - +
"; } else { @@ -240,6 +240,24 @@ class page extends cms { public function __construct() { parent::__construct(); $this->page_offset(); + $this->scripts = " + + + + + + "; } private function page_offset() { @@ -325,8 +343,27 @@ class note extends cms { public $number_of_comments; public function __construct() { - if (isset($_GET['comments'])) { $this->scripts = " + + + + + + "; + + if (isset($_GET['comments'])) { + $this->scripts .= " "; } @@ -424,7 +461,7 @@ END_OF_NAVIGATION; $this->display_comment_link(); } echo <<back to notes/ + back to notes/
END_OF_NAVIGATION;