alecpl
2010-12-30 a36e1ef9671e38f421586c386e94cb1eb4e9b83f
- Fix handling of INBOX when personal namespace prefix is non-empty (#1487657)


2 files modified
3 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/include/rcube_imap.php 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -4,6 +4,7 @@
- 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
--------------
program/include/rcube_imap.php
@@ -3337,7 +3337,7 @@
                    }
                }
                // 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;
                }
            }