summaryrefslogtreecommitdiff
path: root/create_config_inc.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2006-02-19 21:23:13 +0000
committerLester Caine <lester@lsces.co.uk>2006-02-19 21:23:13 +0000
commit28fe9865c9c00dd19210a82c2ca9ff4274af0c02 (patch)
treea18e52781df5b93f109fa1475f6ee414d499ab0a /create_config_inc.php
parentb6d2228d9d0f45538f8559f10ca71d8411074a7f (diff)
downloadinstall-28fe9865c9c00dd19210a82c2ca9ff4274af0c02.tar.gz
install-28fe9865c9c00dd19210a82c2ca9ff4274af0c02.tar.bz2
install-28fe9865c9c00dd19210a82c2ca9ff4274af0c02.zip
Add $gDbCaseSensitivity to config_inc.php - just need to control it now
Diffstat (limited to 'create_config_inc.php')
-rw-r--r--create_config_inc.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/create_config_inc.php b/create_config_inc.php
index d7c093b..cc5c681 100644
--- a/create_config_inc.php
+++ b/create_config_inc.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_install/create_config_inc.php,v 1.7 2006/02/03 16:02:30 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/create_config_inc.php,v 1.8 2006/02/19 21:23:13 lsces Exp $
* @package install
* @subpackage functions
*/
@@ -38,7 +38,7 @@ function create_config($gBitDbType,$gBitDbHost,$gBitDbUser,$gBitDbPassword,$gBit
// | Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
// +----------------------------------------------------------------------+
// The following line is required and should not be altered
-global \$gBitDbType, \$gBitDbHost, \$gBitDbUser, \$gBitDbPassword, \$gBitDbName, \$smarty_force_compile, \$gDebug, \$gPreScan;
+global \$gBitDbType, \$gBitDbHost, \$gBitDbUser, \$gBitDbPassword, \$gBitDbName, \$gDbCaseSensitivity, \$smarty_force_compile, \$gDebug, \$gPreScan;
// You can choose between different Database abstraction layers. Currently we support:
@@ -85,6 +85,8 @@ global \$gBitDbType, \$gBitDbHost, \$gBitDbUser, \$gBitDbPassword, \$gBitDbName,
// Database name
\$gBitDbName = \"$gBitDbName\";
+// Database field case default
+\$gDbCaseSensitivity = TRUE;
// 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 with a '.' (period)