diff options
author | alecpl <alec@alec.pl> | 2008-10-05 07:18:15 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-10-05 07:18:15 +0000 |
commit | 112c9133bb8dc3b4e8f1d47241fa57c86dd5065c (patch) | |
tree | 4bc8e1e6930476da762858f740f2bc2e3d094cd6 /program/steps/mail/show.inc | |
parent | 1bb65410286e18adbb0172070443d05638201afb (diff) |
- removed deprecated rcube_add_label() and all uses
- code for 'show' action added in r1937 moved to show.inc
Diffstat (limited to 'program/steps/mail/show.inc')
-rw-r--r-- | program/steps/mail/show.inc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index 941c3cce2..d8478d569 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -71,11 +71,16 @@ if ($_GET['_uid']) { // give message uid to the client $OUTPUT->set_env('uid', $MESSAGE->uid); + // set environement $OUTPUT->set_env('safemode', $MESSAGE->is_safe); $OUTPUT->set_env('sender', $MESSAGE->sender['string']); $OUTPUT->set_env('permaurl', rcmail_url('show', array('_uid' => $MESSAGE->uid, '_mbox' => $mbox_name))); $OUTPUT->set_env('mailbox', $mbox_name); - + if ($CONFIG['trash_mbox']) + $OUTPUT->set_env('trash_mailbox', $CONFIG['trash_mbox']); + if (!$OUTPUT->ajax_call) + $OUTPUT->add_label('checkingmail', 'deletemessage', 'movemessagetotrash', 'movingmessage'); + // check for unset disposition notification if ($MESSAGE->headers->mdn_to && !$MESSAGE->headers->mdn_sent && @@ -92,7 +97,7 @@ if ($_GET['_uid']) { } else if (empty($CONFIG['mdn_requests'])) { - rcube_add_label('mdnrequest'); + $OUTPUT->add_label('mdnrequest'); $OUTPUT->set_env('mdn_request', true); } } |