From 07103a66eb79050799b4912a37de18b585a43137 Mon Sep 17 00:00:00 2001 From: lbergman Date: Tue, 6 Jun 2000 13:31:41 +0000 Subject: [PATCH] Added check for ?help.php so left frame is set large. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@525 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/webmail.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/webmail.php b/src/webmail.php index e751032d..717eafd7 100644 --- a/src/webmail.php +++ b/src/webmail.php @@ -36,7 +36,12 @@ echo ""; echo "$org_title"; echo ""; - echo ""; + $ishelp = substr(getenv(REQUEST_URI),-8); // If calling help, set left frame to 300 + if ($ishelp == "help.php") { + echo ""; + } else { + echo ""; + } /** There are four ways to call webmail.php -- 2.25.1