From 165f72963c0709abab9f1d6bc5a8c9837f521727 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 27 Feb 2007 03:34:46 +0000 Subject: [PATCH] Do the same thing of allowing multiple connections in our call to mysql_connect() from r828 on the 2.1.x branch --- DbMySql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DbMySql.php b/DbMySql.php index ce91c9b..c4a6371 100644 --- a/DbMySql.php +++ b/DbMySql.php @@ -47,7 +47,7 @@ class BSDbMySql extends BSDb */ protected function _connect($server, $user, $password, $database) { - $link = @mysql_connect($server, $user, $password); + $link = @mysql_connect($server, $user, $password, true); if ($link) { $this->_selectDb($database, $link); -- 2.22.5