Aleksander Machniak
2015-12-22 6521c20768d6368b1e068f8ba7857fb614b7d775
Add INBOX to the list of folders only if no filter and no prefix was specified
1 files modified
4 ■■■■ changed files
program/lib/Roundcube/rcube_imap.php 4 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_imap.php
@@ -2811,7 +2811,7 @@
        }
        // INBOX should always be available
        if ((!$filter || $filter == 'mail') && !in_array('INBOX', $a_mboxes)) {
        if (!strlen($root) && (!$filter || $filter == 'mail') && !in_array('INBOX', $a_mboxes)) {
            array_unshift($a_mboxes, 'INBOX');
        }
@@ -2942,7 +2942,7 @@
        }
        // INBOX should always be available
        if ((!$filter || $filter == 'mail') && !in_array('INBOX', $a_mboxes)) {
        if (!strlen($root) && (!$filter || $filter == 'mail') && !in_array('INBOX', $a_mboxes)) {
            array_unshift($a_mboxes, 'INBOX');
        }