diff options
author | thomascube <thomas@roundcube.net> | 2010-03-04 07:39:53 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-03-04 07:39:53 +0000 |
commit | a96183883d95dc83a7d0951f5b834e44b062f9cf (patch) | |
tree | a8b3471421dcd01531d46100bf19d970789ec568 /program/steps | |
parent | 40353f1a6c7e80ae373a2dcec7ae16db217162a5 (diff) |
Changed signature separator when top-posting (#1486330)
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/compose.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index ed4903b63..52a396b0b 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -151,6 +151,8 @@ if (!empty($msg_uid)) if (!empty($_SESSION['compose']['param']['all'])) $MESSAGE->reply_all = 1; + + $OUTPUT->set_env('compose_mode', 'reply'); } else if ($compose_mode == RCUBE_COMPOSE_DRAFT) { @@ -166,6 +168,7 @@ if (!empty($msg_uid)) else if ($compose_mode == RCUBE_COMPOSE_FORWARD) { $_SESSION['compose']['forward_uid'] = $msg_uid; + $OUTPUT->set_env('compose_mode', 'forward'); } } |