From a2222aa39d880b25cac7ed4575f443c510e40287 Mon Sep 17 00:00:00 2001 From: lbergman Date: Mon, 5 Jun 2000 20:18:33 +0000 Subject: [PATCH] added a fourth method (?help.php) to call webmail. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@519 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/webmail.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/webmail.php b/src/webmail.php index cfcf871a..e751032d 100644 --- a/src/webmail.php +++ b/src/webmail.php @@ -39,13 +39,15 @@ echo ""; /** - There are three ways to call webmail.php + There are four ways to call webmail.php 1. webmail.php - - this just loads the default entry screen. + - This just loads the default entry screen. 2. webmail.php?right_frame=right_main.php&sort=X&startMessage=X&mailbox=XXXX - This loads the frames starting at the given values. 3. webmail.php?right_frame=folders.php - Loads the frames with the Folder options in the right frame. + 4. webmail.php?right_frame=help.php + - Lets the left frame set up different menu for help and calls the right frame. This was done to create a pure HTML way of refreshing the folder list since we would like to use as little Javascript as possible. @@ -58,10 +60,14 @@ $urlMailbox = urlencode($mailbox); echo ""; echo ""; + } else if ($right_frame == "help.php") { + echo ""; + echo ""; } else { echo ""; echo ""; } + ?> -- 2.25.1