From 34fa390636f578449d28ad74a90fa7ea83621297 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 7 Jul 2009 16:31:16 -0600 Subject: [PATCH] Indicate reply/fwd data has been added to outgoing mimp message --- imp/compose-mimp.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/imp/compose-mimp.php b/imp/compose-mimp.php index 6b0d6ca9d..6faee1e5e 100644 --- a/imp/compose-mimp.php +++ b/imp/compose-mimp.php @@ -116,6 +116,8 @@ case 'rl': $actions = array('r' => 'reply', 'ra' => 'reply_all', 'rl' => 'reply_list'); $reply_msg = $imp_compose->replyMessage($actions[$actionID], $imp_contents, Horde_Util::getFormData('to')); $header = $reply_msg['headers']; + + $notification->push(_("Reply text will be automatically appended to your outgoing message."), 'horde.message'); break; // 'f' = forward @@ -125,6 +127,8 @@ case 'f': } $fwd_msg = $imp_compose->forwardMessage($imp_contents); $header = $fwd_msg['headers']; + + $notification->push(_("Forwarded message will be automatically added to your outgoing message."), 'horde.message'); break; case _("Redirect"): -- 2.11.0