Fix for 1222436. Forwarding broken when compose in new window not used.
authorjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 23 Aug 2005 14:54:08 +0000 (14:54 +0000)
committerjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 23 Aug 2005 14:54:08 +0000 (14:54 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9983 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
src/right_main.php

index fa27d3384367ff676255cf9fb8f2d249e2f4def5..3fa947587d159955a7712791a5d0a2d1aa260eaa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -433,6 +433,7 @@ Version 1.5.1 -- CVS
     in formatBody() function (#1258925).
   - login_form hook changed from do_hook to concat_hook_function in order to
     place form elements before login button (#1245070).
+  - Forwarding broken when not using compose in new window (#1222436).
 
 Version 1.5.0 - 2 February 2004
 -------------------------------
index 8b555c1e8e8606bd5379e12219d8a6018ea9e1f5..e7e5d7d02d7d9d3f6da693147ed6038607341b3e 100644 (file)
@@ -302,7 +302,7 @@ if (isset($aMailbox['FORWARD_SESSION'])) {
         session_write_close();
         // we have to redirect to the compose page
         $location = SM_PATH . 'src/compose.php?mailbox='. urlencode($mailbox).
-                    '&amp;session='.$aMailbox['FORWARD_SESSION'];
+                    '&session='.$aMailbox['FORWARD_SESSION'];
         header("Location: $location");
         exit;
     }
@@ -393,4 +393,4 @@ $oTemplate->display('footer.tpl');
 /* add the mailbox to the cache */
 $mailbox_cache[$account.'_'.$aMailbox['NAME']] = $aMailbox;
 sqsession_register($mailbox_cache,'mailbox_cache');
-?>
\ No newline at end of file
+?>