From: stekkel Date: Sun, 6 Oct 2002 17:04:55 +0000 (+0000) Subject: rg=0 fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=cd9a4fd36723c95a9e847922dd99c8ea22bd947c;p=squirrelmail.git rg=0 fix git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3768 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- 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'];