From: Chuck Hagenbuch Date: Thu, 4 Jun 2009 14:39:52 +0000 (-0400) Subject: fix parse error (stray ;) X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=3cf0de9f123c9e8e0027c85f7df4d4ce6172b155;p=horde.git fix parse error (stray ;) --- diff --git a/imp/lib/api.php b/imp/lib/api.php index f50fc86ca..81c284d27 100644 --- a/imp/lib/api.php +++ b/imp/lib/api.php @@ -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; }