From c3918236ef1bcf2ada50a44699ad87053007338e Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 13 Mar 2006 04:56:20 +0000 Subject: [PATCH] r752: Fixing a bug that caused installation to fail for those with register_globals = ON --- install/global.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/global.php b/install/global.php index 2c25e1d..24a2823 100644 --- a/install/global.php +++ b/install/global.php @@ -26,6 +26,7 @@ if (!file_exists('./includes/config.php')) } require_once('./includes/config.php'); +$thepass = $password; // darn register_globals define('ISSO_ESCAPE_STRINGS', 1); define('ISSO_CHECK_POST_REFERER', 1); @@ -40,7 +41,7 @@ $bugsys->sourcepath = $bugsys->fetch_sourcepath($pathtoisso); $bugsys->load('db_mysql'); $db->database = $database; -$db->connect($servername, $username, $password, $usepconnect); +$db->connect($servername, $username, $thepass, $usepconnect); $bugsys->exec_sanitize_data(); -- 2.22.5