fix parse error (stray ;)
authorChuck Hagenbuch <chuck@horde.org>
Thu, 4 Jun 2009 14:39:52 +0000 (10:39 -0400)
committerChuck Hagenbuch <chuck@horde.org>
Thu, 4 Jun 2009 14:39:52 +0000 (10:39 -0400)
imp/lib/api.php

index f50fc86..81c284d 100644 (file)
@@ -423,7 +423,7 @@ function _imp_mailboxCacheId($mailbox)
     require_once dirname(__FILE__) . '/base.php';
 
     return IMP::checkAuthentication(true)
-        ? $GLOBALS['imp_imap']->ob->getCacheId($mailbox);
+        ? $GLOBALS['imp_imap']->ob->getCacheId($mailbox)
         : null;
 }