From: Michael J. Rubinsky Date: Tue, 17 Mar 2009 21:42:32 +0000 (-0400) Subject: Fix class constant name X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=53bd74b246819c1944c3ecab939191803b2e5149;p=horde.git Fix class constant name --- diff --git a/imp/ajax.php b/imp/ajax.php index f23a7d436..470844eef 100644 --- a/imp/ajax.php +++ b/imp/ajax.php @@ -627,7 +627,7 @@ case 'PurgeDeleted': $change = _changed($mbox, $cacheid, $indices); if (!$change) { $sort = IMP::getSort($mbox); - $change = ($sort['by'] == SORTTHREAD); + $change = ($sort['by'] == Horde_Imap_Client::SORT_THREAD); } $imp_message = IMP_Message::singleton(); $expunged = $imp_message->expungeMailbox(array($mbox => 1), array('list' => true));