From: Michael M Slusarz Date: Thu, 17 Sep 2009 21:12:21 +0000 (-0600) Subject: Fix determination of starting message in search mailboxes X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=2c115e14d37534dbbe214513962160a0c6e64a2c;p=horde.git Fix determination of starting message in search mailboxes --- diff --git a/imp/lib/Mailbox.php b/imp/lib/Mailbox.php index 0c5284eb3..2bbcdb6da 100644 --- a/imp/lib/Mailbox.php +++ b/imp/lib/Mailbox.php @@ -584,6 +584,10 @@ class IMP_Mailbox */ public function mailboxStart($total) { + if ($this->_searchmbox) { + return 1; + } + switch ($GLOBALS['prefs']->getValue('mailbox_start')) { case IMP::MAILBOX_START_FIRSTPAGE: return 1;