From: Jim Hu <ji...@ta...> - 2004-09-13 19:59:35
|
At the beginning of the latest version of init.inc.php, the code has changed from: // Older versions of PHP do not define $_SERVER. Define it here instead. if (!isset($_SERVER) && isset($HTTP_SERVER_VARS)) { $_SERVER = &$HTTP_SERVER_VARS; } to // Older versions of PHP do not define $_SERVER. Define it here instead. if (!isset($_SERVER) && isset($_SERVER)) { $_SERVER = &$_SERVER; } Shouldn't this go back if the function is still for compatibility with older versions of php? Or perhaps it should just be deleted, as it seems like the if will never evaluate to true. Not that this affects my install... Jim ===================================== Jim Hu Associate Professor and Associate Head for Graduate Programs Dept. of Biochemistry and Biophysics 2128 TAMU Texas A&M Univ. College Station, TX 77843-2128 979-862-4054 |