From b7aad247fefb68bedfdcb0f8064caaa147cd5e63 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 17 Apr 2009 12:46:12 -0600 Subject: [PATCH] Fix variable warning --- imp/ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0