diff options
| author | Christian Fowler <spider@viovio.com> | 2011-01-16 23:21:29 -0500 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2011-01-16 23:21:29 -0500 |
| commit | 73c8c84eefae2e335e2155efbf31c344fd137be3 (patch) | |
| tree | cc86eac5894dffd7d2f8cd9d8eab0faca1aea67c /create_config_inc.php | |
| parent | f8e358703ed5fd53b4e3400b7a6adfd2fa133f0f (diff) | |
| download | install-73c8c84eefae2e335e2155efbf31c344fd137be3.tar.gz install-73c8c84eefae2e335e2155efbf31c344fd137be3.tar.bz2 install-73c8c84eefae2e335e2155efbf31c344fd137be3.zip | |
add defaults from session for admin_inc; use checkboxes for pump files
Diffstat (limited to 'create_config_inc.php')
| -rw-r--r-- | create_config_inc.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/create_config_inc.php b/create_config_inc.php index 2d97602..b8bee70 100644 --- a/create_config_inc.php +++ b/create_config_inc.php @@ -100,26 +100,26 @@ global \$gBitDbType, \$gBitDbHost, \$gBitDbUser, \$gBitDbPassword, \$gBitDbName, // oci8po Oracle (9i and newer) // firebird FireBird // sybase Sybase -\$gBitDbType = \"$gBitDbType\"; +\$gBitDbType=\"$gBitDbType\"; // Hostname or IP for your database. // Some examples: // 'localhost' if you are running the database on the same machine as bitweaver // If you use Oracle, insert your TNS Name here // If you use SQLite, insert the path and filename to your database file -\$gBitDbHost = \"$gBitDbHost\"; +\$gBitDbHost=\"$gBitDbHost\"; // Database username -\$gBitDbUser = \"$gBitDbUser\"; +\$gBitDbUser=\"$gBitDbUser\"; // Database password -\$gBitDbPassword = \"$gBitDbPassword\"; +\$gBitDbPassword=\"$gBitDbPassword\"; // Database name -\$gBitDbName = \"$gBitDbName\"; +\$gBitDbName=\"$gBitDbName\"; // Database field case default -\$gBitDbCaseSensitivity = \"$gBitDbCaseSensitivity\"; +\$gBitDbCaseSensitivity=\"$gBitDbCaseSensitivity\"; // This prefix will be prepended to the begining of every table name to allow // multiple independent installs to share a single database. By ending the prefix |
