From: simond Date: Wed, 20 Feb 2002 09:39:50 +0000 (+0000) Subject: Remove incorrect & usage X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=732fd5a4019e68399281fd42dd19d679ea4afb8f;p=squirrelmail.git Remove incorrect & usage git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2483 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/delete_message.php b/src/delete_message.php index 7b7d6cc6..7cc08b1c 100644 --- a/src/delete_message.php +++ b/src/delete_message.php @@ -35,13 +35,13 @@ $location = get_location(); if (isset($where) && isset($what)) { header("Location: $location/search.php?where=" . urlencode($where) . - '&what=' . urlencode($what) . '&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&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&startMessage=$startMessage&mailbox=" . + header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" . urlencode($mailbox)); } }