-disabled persistent db connections for now...
This commit is contained in:
martin 2011-03-10 16:46:36 -05:00
parent b3a7b31e7e
commit 2f8aeeb2c0
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ require_once 'Users.php';
global $CC_CONFIG, $CC_DBC;
$dsn = $CC_CONFIG['dsn'];
$CC_DBC = DB::connect($dsn, TRUE);
$CC_DBC = DB::connect($dsn, FALSE);
if (PEAR::isError($CC_DBC)) {
echo "ERROR: ".$CC_DBC->getMessage()." ".$CC_DBC->getUserInfo()."\n";
exit(1);