From 3cf0de9f123c9e8e0027c85f7df4d4ce6172b155 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Thu, 4 Jun 2009 10:39:52 -0400 Subject: [PATCH] fix parse error (stray ;) --- imp/lib/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0