From 7baed0125935457117cbbdb037c179ab9e4d5d11 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 21 Jan 2010 16:00:45 -0700 Subject: [PATCH] Fix identification of single message thread. --- framework/Imap_Client/lib/Horde/Imap/Client/Thread.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.11.0