Fix accidental private => protected replacement

pull/1/head
thomascube 13 years ago
parent 6efab08e49
commit f295d2b5b0

@ -3488,7 +3488,7 @@ class rcube_imap extends rcube_storage
if (substr($entry, 0, 7) == '/shared') { if (substr($entry, 0, 7) == '/shared') {
return array(substr($entry, 7), 'value.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'); return array(substr($entry, 8), 'value.priv');
} }

Loading…
Cancel
Save