summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-11-09 09:18:28 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-11-09 09:18:28 +0000
commit567160270d8c25ef9b56596eb42cdffc1347234a (patch)
tree901aad92282298909fd853df2bb16238ec2560fd
parentcc469875ccbd1cca2e4f80245ecaca86c70d8228 (diff)
- oops, fix parse error from last commit
git-svn-id: https://svn.roundcube.net/trunk@4200 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/include/rcube_imap.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php
index 2b77bf55d..14cf396de 100644
--- a/roundcubemail/program/include/rcube_imap.php
+++ b/roundcubemail/program/include/rcube_imap.php
@@ -3199,7 +3199,8 @@ class rcube_imap
return true;
$key = $subscription ? 'subscribed' : 'existing';
- $mbox = $this->mod_mailbox($mbox_name)
+ $mbox = $this->mod_mailbox($mbox_name);
+
if (is_array($this->icache[$key]) && in_array($mbox, $this->icache[$key]))
return true;