From bf58a9d78b7f6ded0f4b89683ae7d5690b1128bc Mon Sep 17 00:00:00 2001 From: james Date: Tue, 27 Jan 2009 21:52:11 +0000 Subject: [PATCH] Make the Help button work on all of the sfiab.com sites because of the mod-rewrite REDIRECT_URL --- common.inc.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common.inc.php b/common.inc.php index 8accbb47..8594d5bf 100644 --- a/common.inc.php +++ b/common.inc.php @@ -624,7 +624,10 @@ else if($title) //if we're under /admin or /config then we want to show the ? help icon if(substr(getcwd(),-6)=="/admin" || substr(getcwd(),-7)=="/config") { - $fname=substr($_SERVER['PHP_SELF'],strlen($config['SFIABDIRECTORY'])+1); + if($_SERVER['REDIRECT_SCRIPT_URL']) + $fname=substr($_SERVER['REDIRECT_SCRIPT_URL'],strlen($config['SFIABDIRECTORY'])+1); + else + $fname=substr($_SERVER['PHP_SELF'],strlen($config['SFIABDIRECTORY'])+1); echo ""; } "";