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 * Close MySql non-persistent connections
*/ */
if (!$cfgPersistentConnections if (isset($dbh) && $dbh) {
&& (isset($dbh) && $dbh)) {
@mysql_close($dbh); @mysql_close($dbh);
} }
if (!$cfgPersistentConnections if (isset($userlink) && $userlink) {
&& (isset($userlink) && $userlink)) {
@mysql_close($userlink); @mysql_close($userlink);
} }
?> ?>