diff options
author | thomascube <thomas@roundcube.net> | 2011-08-19 16:32:38 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-08-19 16:32:38 +0000 |
commit | d43d4bcf44a1feae4274e51f41ce9625147f9f85 (patch) | |
tree | eff01cb8c201cf3c397ca71c31fbd6dd2624c504 /program/include/rcube_imap.php | |
parent | b6cd452bd31bfd4b6b94b23fe54b424fdf901e61 (diff) |
Backporting r5092, r5095, r5096 to release-0.6 branch
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r-- | program/include/rcube_imap.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 0e28b083a..6a35af0a8 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -3513,6 +3513,10 @@ class rcube_imap */ function mailbox_info($mailbox) { + if ($this->icache['options'] && $this->icache['options']['name'] == $mailbox) { + return $this->icache['options']; + } + $acl = $this->get_capability('ACL'); $namespace = $this->get_namespace(); $options = array(); @@ -3574,6 +3578,8 @@ class rcube_imap $options['norename'] = $options['is_root'] || $options['namespace'] != 'personal'; } + $this->icache['options'] = $options; + return $options; } |