back to previous version (last one does not fix the bug #493200 but creates a new one)

This commit is contained in:
Loïc Chapeaux
2001-12-16 14:43:22 +00:00
parent b4d92b552b
commit 66fdc27f81

View File

@@ -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);
}
?>