Use mail_sent in stead of passing whole message in url var.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 26 Jul 2003 10:15:14 +0000 (10:15 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 26 Jul 2003 10:15:14 +0000 (10:15 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5426 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/compose.php
src/right_main.php

index 7cb53aaf64a3a3b9b1333579460653c33f56e4ed..a0baf73a1a5cfe52eaca5ac22098f044dda7239d 100644 (file)
@@ -385,7 +385,7 @@ if ($send) {
         }
         else {
             Header("Location: $location/right_main.php?mailbox=$urlMailbox&sort=$sort".
-                   "&startMessage=$startMessage&note=".urlencode(_("Your Message has been sent.")));
+                   "&startMessage=$startMessage&mail_sent=yes");
         }
     } else {
         if ($compose_new_win == '1') {
index bcac251087f5a72875494e6a7635ead7a375efed..7223cacf8a9f1cf3ae42d778247080076a9466cd 100644 (file)
@@ -53,6 +53,7 @@ sqgetGlobalVar('lastTargetMailbox', $lastTargetMailbox, SQ_SESSION);
 sqgetGlobalVar('numMessages'      , $numMessages,       SQ_SESSION);
 sqgetGlobalVar('session',           $session,           SQ_GET);
 sqgetGlobalVar('note',              $note,              SQ_GET);
+sqgetGlobalVar('mail_sent',         $mail_sent,         SQ_GET);
 sqgetGlobalVar('use_mailbox_cache', $use_mailbox_cache, SQ_GET);
 
 if ( sqgetGlobalVar('startMessage', $temp) ) {
@@ -154,6 +155,11 @@ if ($composenew) {
     displayPageHeader($color, $mailbox);
 }
 do_hook('right_main_after_header');
+
+/* display a message to the user that their mail has been sent */
+if (isset($mail_sent) && $mail_sent == 'yes') {
+    $note = _("Your Message has been sent.");
+}
 if (isset($note)) {
     echo html_tag( 'div', '<b>' . $note .'</b>', 'center' ) . "<br>\n";
 }