back to previous version (last one does not fix the bug #493200 but creates a new one)
This commit is contained in:
@@ -8,12 +8,10 @@
|
||||
/**
|
||||
* Close MySql non-persistent connections
|
||||
*/
|
||||
if (!$cfgPersistentConnections
|
||||
&& (isset($dbh) && $dbh)) {
|
||||
if (isset($dbh) && $dbh) {
|
||||
@mysql_close($dbh);
|
||||
}
|
||||
if (!$cfgPersistentConnections
|
||||
&& (isset($userlink) && $userlink)) {
|
||||
if (isset($userlink) && $userlink) {
|
||||
@mysql_close($userlink);
|
||||
}
|
||||
?>
|
||||
|
Reference in New Issue
Block a user