From cd9a4fd36723c95a9e847922dd99c8ea22bd947c Mon Sep 17 00:00:00 2001 From: stekkel Date: Sun, 6 Oct 2002 17:04:55 +0000 Subject: [PATCH] rg=0 fix git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3768 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/right_main.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/right_main.php b/src/right_main.php index 9e39d732..8470069f 100644 --- a/src/right_main.php +++ b/src/right_main.php @@ -50,9 +50,13 @@ $delimiter = $_SESSION['delimiter']; if (isset($_GET['startMessage'])) { $startMessage = $_GET['startMessage']; +} elseif (isset($_POST['startMessage'])) { + $startMessage = $_POST['startMessage']; } if (isset($_GET['mailbox'])) { $mailbox = $_GET['mailbox']; +} else if (isset($_POST['mailbox'])) { + $mailbox = $_POST['mailbox']; } if (isset($_GET['PG_SHOWNUM'])) { $PG_SHOWNUM = $_GET['PG_SHOWNUM']; -- 2.25.1