From dd3993d6fa37ff32db4d77a13f05edabfa94193f Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Wed, 12 Jan 2005 20:17:16 +0000 Subject: [PATCH] Replace other instance of mysql_pconnect() --- include/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/db.php b/include/db.php index adcb537..910d151 100644 --- a/include/db.php +++ b/include/db.php @@ -20,7 +20,7 @@ function query_bugzilladb($sQuery,$sComment="") if(!$hBugzillaLink) { - $hBugzillaLink = mysql_pconnect(BUGZILLA_DBHOST, BUGZILLA_DBUSER, BUGZILLA_DBPASS); + $hBugzillaLink = mysql_connect(BUGZILLA_DBHOST, BUGZILLA_DBUSER, BUGZILLA_DBPASS); mysql_select_db(BUGZILLA_DB); } $hResult = mysql_query($sQuery, $hBugzillaLink);