diff options
| author | thomascube <thomas@roundcube.net> | 2012-01-18 14:26:01 +0000 |
|---|---|---|
| committer | thomascube <thomas@roundcube.net> | 2012-01-18 14:26:01 +0000 |
| commit | 31579dfdf4adc2fee37767c881f754791bd65e83 (patch) | |
| tree | 9d8244d885abf61a31788dabab3c526b6181c249 /program | |
| parent | 08b7b66e7615acdb08ce7940c4ad18f85aab40f2 (diff) | |
Also support /private/... annotation selectors
Diffstat (limited to 'program')
| -rw-r--r-- | program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index b6a44896e..cdcb48f79 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -3488,7 +3488,7 @@ class rcube_imap extends rcube_storage if (substr($entry, 0, 7) == '/shared') { return array(substr($entry, 7), 'value.shared'); } - else if (substr($entry, 0, 8) == '/protected') { + else if (substr($entry, 0, 8) == '/private' || substr($entry, 0, 8) == '/protected') { return array(substr($entry, 8), 'value.priv'); } |
