diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-20 00:54:02 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-20 00:54:02 +0000 |
commit | 681197a265f1dd3873780fdcf0b5f1e8fa0150ab (patch) | |
tree | fe8aafe29cf5f3d6d5a285c330147c9e3f3668c0 /installer/database_config.php | |
parent | d51955c8efa78d7f0a0ca8c138c2eebaf5ecb975 (diff) |
Web based installer. It's still got some rough edges, but you can now
do a complete CLI or web based install.
Diffstat (limited to 'installer/database_config.php')
-rw-r--r-- | installer/database_config.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/installer/database_config.php b/installer/database_config.php index 3cc452ed..eac55b96 100644 --- a/installer/database_config.php +++ b/installer/database_config.php @@ -1,5 +1,5 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> -<?= "<?php" ?> defined("SYSPATH") or die("No direct script access."); +<?php print "<?php" ?> defined("SYSPATH") or die("No direct script access."); /** * @package Database @@ -29,16 +29,16 @@ $config["default"] = array( "benchmark" => false, "persistent" => false, "connection" => array( - "type" => "<?= $type ?>", - "user" => "<?= $user ?>", - "pass" => "<?= $password ?>", - "host" => "<?= $host ?>", + "type" => "<?php print $type ?>", + "user" => "<?php print $user ?>", + "pass" => "<?php print $password ?>", + "host" => "<?php print $host ?>", "port" => false, "socket" => false, - "database" => "<?= $dbname ?>" + "database" => "<?php print $dbname ?>" ), "character_set" => "utf8", - "table_prefix" => "<?= $prefix ?>", + "table_prefix" => "<?php print $prefix ?>", "object" => true, "cache" => false, "escape" => true |