diff options
author | alecpl <alec@alec.pl> | 2012-01-19 07:33:32 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-01-19 07:33:32 +0000 |
commit | 002189e3ab413b7702f3e0939cab68c9ea10817a (patch) | |
tree | cc36a608c94581455e7b5fd5a690c70c2609b216 /program/steps/mail/show.inc | |
parent | ce4c6103114ad45c69ff2a6a06e3b847b64dfc8f (diff) |
- Fix drafts update issues when edited from preview pane (#1488314)
Diffstat (limited to 'program/steps/mail/show.inc')
-rw-r--r-- | program/steps/mail/show.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index 29fe650a9..d3b70b4ab 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -52,6 +52,9 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_GET)) { $OUTPUT->set_env('permaurl', rcmail_url('show', array('_uid' => $MESSAGE->uid, '_mbox' => $mbox_name))); $OUTPUT->set_env('delimiter', $RCMAIL->storage->get_hierarchy_delimiter()); $OUTPUT->set_env('mailbox', $mbox_name); + if ($CONFIG['drafts_mbox']) { + $OUTPUT->set_env('drafts_mailbox', $CONFIG['drafts_mbox']); + } // mimetypes supported by the browser (default settings) $mimetypes = $RCMAIL->config->get('client_mimetypes', 'text/plain,text/html,text/xml,image/jpeg,image/gif,image/png,application/x-javascript,application/pdf,application/x-shockwave-flash'); |