diff options
author | thomascube <thomas@roundcube.net> | 2006-02-19 18:34:34 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-02-19 18:34:34 +0000 |
commit | f88d417c96119b8e50297b930b14fe6ff9a1c5ed (patch) | |
tree | 7fc906e485f9a716c0855000ee20cd017587e0ad /program/steps/mail/compose.inc | |
parent | 0615a69974d0101d3159511d416bb2c75ffa1ad9 (diff) |
Applied several patches
Diffstat (limited to 'program/steps/mail/compose.inc')
-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 80f69b596..98e0a0a2a 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -59,6 +59,9 @@ if ($_GET['_reply_uid'] || $_GET['_forward_uid']) $REPLY_MESSAGE = &$MESSAGE; $_SESSION['compose']['reply_uid'] = $_GET['_reply_uid']; $_SESSION['compose']['reply_msgid'] = $REPLY_MESSAGE['headers']->messageID; + $_SESSION['compose']['reference'] = $REPLY_MESSAGE['headers']->reference; + $_SESSION['compose']['references'] .= !empty($REPLY_MESSAGE['headers']->reference) ? ' ' : ''; + $_SESSION['compose']['references'] .= $REPLY_MESSAGE['headers']->messageID; if ($_GET['_all']) $REPLY_MESSAGE['reply_all'] = 1; |