Remove incorrect &amp usage
authorsimond <simond@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 20 Feb 2002 09:39:50 +0000 (09:39 +0000)
committersimond <simond@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 20 Feb 2002 09:39:50 +0000 (09:39 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2483 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/delete_message.php

index 7b7d6cc69c7339fcac136e6f698210645716461c..7cc08b1cf2924f7b340844f918c238d95f7493c8 100644 (file)
@@ -35,13 +35,13 @@ $location = get_location();
 
 if (isset($where) && isset($what)) {
     header("Location: $location/search.php?where=" . urlencode($where) .
-           '&amp;what=' . urlencode($what) . '&amp;mailbox=' . urlencode($mailbox));
+           '&what=' . urlencode($what) . '&mailbox=' . urlencode($mailbox));
 } else {
     if (!empty($saved_draft) || !empty($mail_sent)) {
-          header("Location: $location/compose.php?mail_sent=$mail_sent&amp;saved_draft=$saved_draft");
+          header("Location: $location/compose.php?mail_sent=$mail_sent&saved_draft=$saved_draft");
     }
     else {
-        header("Location: $location/right_main.php?sort=$sort&amp;startMessage=$startMessage&amp;mailbox=" .
+        header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" .
                urlencode($mailbox));
     }
 }