diff options
Diffstat (limited to 'installer')
-rw-r--r-- | installer/database_config.php | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/installer/database_config.php b/installer/database_config.php index eac55b96..a31119ac 100644 --- a/installer/database_config.php +++ b/installer/database_config.php @@ -25,21 +25,21 @@ * cache - Enable or disable query caching * escape - Enable automatic query builder escaping */ -$config["default"] = array( - "benchmark" => false, - "persistent" => false, - "connection" => array( - "type" => "<?php print $type ?>", - "user" => "<?php print $user ?>", - "pass" => "<?php print $password ?>", - "host" => "<?php print $host ?>", - "port" => false, - "socket" => false, - "database" => "<?php print $dbname ?>" +$config['default'] = array( + 'benchmark' => false, + 'persistent' => false, + 'connection' => array( + 'type' => '<?php print $type ?>', + 'user' => '<?php print $user ?>', + 'pass' => '<?php print $password ?>', + 'host' => '<?php print $host ?>', + 'port' => false, + 'socket' => false, + 'database' => '<?php print $dbname ?>' ), - "character_set" => "utf8", - "table_prefix" => "<?php print $prefix ?>", - "object" => true, - "cache" => false, - "escape" => true + 'character_set' => 'utf8', + 'table_prefix' => '<?php print $prefix ?>', + 'object' => true, + 'cache' => false, + 'escape' => true );
\ No newline at end of file |