diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-18 14:26:01 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-18 14:26:01 +0000 |
| commit | c0a6ee5cdf698e3708743446a469f67916a1d75a (patch) | |
| tree | 98f01e989446095c855ab13175f35582aab99e99 | |
| parent | b2d8ceed44f684ba749023351a97c002f1e622fc (diff) | |
Also support /private/... annotation selectors
git-svn-id: https://svn.roundcube.net/trunk@5794 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index b6a44896e..cdcb48f79 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/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'); } |
