From: Michael M Slusarz Date: Tue, 13 Jul 2010 01:57:35 +0000 (-0600) Subject: Some more places to use self:: X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=21d12cdb17fdb9b271957f1bc48ae999b11ae5d8;p=horde.git Some more places to use self:: --- diff --git a/imp/lib/IMP.php b/imp/lib/IMP.php index c1b5fbf74..9b79f4051 100644 --- a/imp/lib/IMP.php +++ b/imp/lib/IMP.php @@ -934,7 +934,7 @@ class IMP case Horde_Imap_Client::SORT_THREAD: /* Can't do threaded searches in search mailboxes. */ if (!self::threadSortAvailable($mbox)) { - $ob['by'] = IMP::IMAP_SORT_DATE; + $ob['by'] = self::IMAP_SORT_DATE; } break; @@ -953,7 +953,7 @@ class IMP break; } - if ($convert && ($ob['by'] == IMP::IMAP_SORT_DATE)) { + if ($convert && ($ob['by'] == self::IMAP_SORT_DATE)) { $ob['by'] = $prefs->getValue('sortdate'); }