diff options
author | alecpl <alec@alec.pl> | 2010-12-30 11:19:43 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-12-30 11:19:43 +0000 |
commit | a36e1ef9671e38f421586c386e94cb1eb4e9b83f (patch) | |
tree | b36abdf762b55e41ce34ca2346cea23a71ff9033 | |
parent | 4da0bee2f8e442ce4b641e185c0296c326f9041d (diff) |
- Fix handling of INBOX when personal namespace prefix is non-empty (#1487657)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/include/rcube_imap.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ CHANGELOG Roundcube Webmail - Show the same message only once (#1487641) - Fix namespaces handling (#1487649) - Add handling of multifolder METADATA/ANNOTATION responses +- Fix handling of INBOX when personal namespace prefix is non-empty (#1487657) RELEASE 0.5-RC -------------- diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 5e4d22824..24c361c3f 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -3337,7 +3337,7 @@ class rcube_imap } } // Add prefix if first personal namespace is non-empty - if ($this->namespace['personal'][0][0]) { + if ($mbox_name != 'INBOX' && $this->namespace['personal'][0][0]) { return $this->namespace['personal'][0][0].$mbox_name; } } |