1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Slight improvement in multiple DB handling

This commit is contained in:
e107steved
2007-08-08 21:01:46 +00:00
parent cd547f4778
commit 722ab98d65

View File

@@ -12,8 +12,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_handlers/mysql_class.php,v $ | $Source: /cvs_backup/e107_0.8/e107_handlers/mysql_class.php,v $
| $Revision: 1.16 $ | $Revision: 1.17 $
| $Date: 2007-07-24 21:29:24 $ | $Date: 2007-08-08 21:01:46 $
| $Author: e107steved $ | $Author: e107steved $
| |
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
@@ -30,7 +30,7 @@ $db_ConnectionID = NULL;
* MySQL Abstraction class * MySQL Abstraction class
* *
* @package e107 * @package e107
* @version $Revision: 1.16 $ * @version $Revision: 1.17 $
* @author $Author: e107steved $ * @author $Author: e107steved $
*/ */
class db { class db {
@@ -117,7 +117,7 @@ class db {
} }
} }
} }
$db_ConnectionID = $this->mySQLaccess; // Save the connection resource if ($db_ConnectionID == NULL) $db_ConnectionID = $this->mySQLaccess; // Save the connection resource
} }