From: stekkel Date: Sun, 6 Oct 2002 16:25:10 +0000 (+0000) Subject: rg=0 fixes X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=882cd9089568d6fc7cd59a4c45f74ee337a22140 rg=0 fixes git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3767 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- 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);