diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-18 15:26:46 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-18 15:26:46 +0000 |
| commit | 7ef3959be906df61f6b394f878f1e10852760c80 (patch) | |
| tree | e863758155d3559012fbbf0f16719a5434d82ee7 | |
| parent | f8d99bc7341dad989b7152056f76636f093b78c2 (diff) | |
Fix accidental private => protected replacement
git-svn-id: https://svn.roundcube.net/trunk@5796 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 cdcb48f79..3e2abe71e 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) == '/private' || substr($entry, 0, 8) == '/protected') { + else if (substr($entry, 0, 8) == '/private') { return array(substr($entry, 8), 'value.priv'); } |
