X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=functions%2Fglobal.php;h=36ee51a58011f14d01512ac8177b22f0adfd712b;hp=aaf06389a90993594aec5c9006afc6d4a8b41e07;hb=f151e745404bb45f6162d41b4e75d5b0fbddceba;hpb=b52c680ae0e3858c6cc0496bd9ff9ea77f795579 diff --git a/functions/global.php b/functions/global.php index aaf06389..36ee51a5 100644 --- a/functions/global.php +++ b/functions/global.php @@ -604,9 +604,11 @@ if (!function_exists('session_regenerate_id')) { * @since 1.2.3 */ function php_self () { - if ( sqgetGlobalVar('REQUEST_URI', $req_uri, SQ_SERVER) && !empty($req_uri) ) { - return $req_uri; - } + // PHP 4.4.4 apparently gives the wrong value here - missing the query string + // this code is commented out in the 1.4.x code, so we'll do the same here + //if ( sqgetGlobalVar('REQUEST_URI', $req_uri, SQ_SERVER) && !empty($req_uri) ) { + // return $req_uri; + //} if ( sqgetGlobalVar('PHP_SELF', $php_self, SQ_SERVER) && !empty($php_self) ) {