Replace other instance of mysql_pconnect()

This commit is contained in:
Chris Morgan
2005-01-12 20:17:16 +00:00
committed by WineHQ
parent cf8ddf6e49
commit dd3993d6fa

View File

@@ -20,7 +20,7 @@ function query_bugzilladb($sQuery,$sComment="")
if(!$hBugzillaLink) 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); mysql_select_db(BUGZILLA_DB);
} }
$hResult = mysql_query($sQuery, $hBugzillaLink); $hResult = mysql_query($sQuery, $hBugzillaLink);