diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-23 17:38:32 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-23 17:38:32 +0000 |
| commit | 0f89ccb20f0d8f2f017f25bc7732c1805bc527bf (patch) | |
| tree | e0647e8e4ab25eb273b2d601e4e6859cb668203c | |
| parent | 858129b6b4b47e15a37745c2971acfa012a9dbe3 (diff) | |
- Fix parent folder with unread subfolder not bold when message is open (#1487078)
git-svn-id: https://svn.roundcube.net/trunk@4127 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 1 | ||||
| -rw-r--r-- | roundcubemail/program/steps/mail/show.inc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index c5bb2a1c5..48daaa150 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -47,6 +47,7 @@ CHANGELOG Roundcube Webmail - Re-implemented SMTP proxy authentication support - Add support for IMAP proxy authentication (#1486690) - Add support for AUTH=DIGEST-MD5 in IMAP (RFC 2831) +- Fix parent folder with unread subfolder not bold when message is open (#1487078) RELEASE 0.4.2 ------------- diff --git a/roundcubemail/program/steps/mail/show.inc b/roundcubemail/program/steps/mail/show.inc index c3046f634..a5df3475d 100644 --- a/roundcubemail/program/steps/mail/show.inc +++ b/roundcubemail/program/steps/mail/show.inc @@ -49,6 +49,7 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_GET)) { $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('delimiter', $IMAP->get_hierarchy_delimiter()); $OUTPUT->set_env('mailbox', $mbox_name); if ($CONFIG['trash_mbox']) |
