From df6b25144faef3a12fd2db73ecc765ec7eb0ec65 Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Tue, 5 Jul 2011 21:18:01 -0400 Subject: [PATCH] Added quotes around .ini section headers in index.php --- index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index e58f737..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(); -- 2.30.2