From: Michael M Slusarz Date: Fri, 17 Apr 2009 18:46:12 +0000 (-0600) Subject: Fix variable warning X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b7aad247fefb68bedfdcb0f8064caaa147cd5e63;p=horde.git Fix variable warning --- diff --git a/imp/ajax.php b/imp/ajax.php index d248f0ba8..47c160da1 100644 --- a/imp/ajax.php +++ b/imp/ajax.php @@ -98,7 +98,7 @@ function _getListMessages($mbox, $change) // TODO: This can potentially be optimized for arrival time sort - if the // cache ID changes, we know the changes must occur at end of mailbox. - if (!$res->reset && (Util::getPost('purge') || $change)) { + if (empty($res->reset) && (Util::getPost('purge') || $change)) { $res->update = 1; }