From 882cd9089568d6fc7cd59a4c45f74ee337a22140 Mon Sep 17 00:00:00 2001 From: stekkel Date: Sun, 6 Oct 2002 16:25:10 +0000 Subject: [PATCH] rg=0 fixes git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3767 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/move_messages.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/move_messages.php b/src/move_messages.php index 755f0102..11d49864 100644 --- a/src/move_messages.php +++ b/src/move_messages.php @@ -133,6 +133,12 @@ if (isset($_POST['msg'])) { elseif (isset($_GET['msg'])) { $msg = $_GET['msg']; } + +if (isset($_SESSION['msgs'])) { + $msgs = $_SESSION['msgs']; +} + + if (isset($_POST['expungeButton'])) { $expungeButton = $_POST['expungeButton']; } @@ -162,6 +168,9 @@ if (isset($_POST['location'])) { $location = $_POST['location']; } +if (isset($_SESSION['composesession'])) { + $composesession = $_SESSION['composesession']; +} /* end of get globals */ $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); -- 2.25.1