Index: trunk/kernel/include/config.php =================================================================== diff -u -r369 -r534 --- trunk/kernel/include/config.php (.../config.php) (revision 369) +++ trunk/kernel/include/config.php (.../config.php) (revision 534) @@ -13,7 +13,7 @@ function clsConfig() { $this->m_IsDirty=false; - $this->adodbConnection = GetADODBConnection(); + $this->adodbConnection = &GetADODBConnection(); $this->config = array(); $this->m_IsDefault = array(); $this->VarType = array(); @@ -186,7 +186,7 @@ function clsConfigAdminItem($config_name=NULL) { - $this->adodbConnection = GetADODBConnection(); + $this->adodbConnection = &GetADODBConnection(); if($config_name) $this->LoadSetting($config_name); } @@ -418,7 +418,7 @@ WHERE ModuleOwner='".$this->module."' AND Section='".$this->section."' AND Install=1 ORDER BY DisplayOrder ASC"; } if( $GLOBALS['debuglevel'] ) echo $sql."
\n"; - $adodbConnection = GetADODBConnection(); + $adodbConnection = &GetADODBConnection(); $rs = $adodbConnection->Execute($sql); while($rs && !$rs->EOF) {