From: Michael M Slusarz Date: Thu, 21 Jan 2010 23:00:45 +0000 (-0700) Subject: Fix identification of single message thread. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7baed0125935457117cbbdb037c179ab9e4d5d11;p=horde.git Fix identification of single message thread. --- diff --git a/framework/Imap_Client/lib/Horde/Imap/Client/Thread.php b/framework/Imap_Client/lib/Horde/Imap/Client/Thread.php index 7654a8888..20d831b28 100644 --- a/framework/Imap_Client/lib/Horde/Imap/Client/Thread.php +++ b/framework/Imap_Client/lib/Horde/Imap/Client/Thread.php @@ -117,7 +117,7 @@ class Horde_Imap_Client_Thread public function getThread($index) { /* Find the beginning of the thread. */ - if (($begin = $this->getThreadBase($index)) === false) { + if (!($begin = $this->getThreadBase($index))) { return array($index); }