From 0108116516e709f10973bd1947760fe0ec5dbe79 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 27 Feb 2007 03:33:51 +0000 Subject: [PATCH] In our call to mysql_connect(), allow us to open multiple connections to the database server. --- db_mysql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_mysql.php b/db_mysql.php index 21ea808..1083ea1 100644 --- a/db_mysql.php +++ b/db_mysql.php @@ -118,7 +118,7 @@ class DB_MySQL extends DB_Abstract */ function command_mysql_connect($server, $user, $password, $database) { - $link = mysql_connect($server, $user, $password); + $link = mysql_connect($server, $user, $password, true); $this->select_db($database, $link); return $link; -- 2.22.5