From e70b3b24fc8ac7b54a820ae87ce8f4af4043125e Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Thu, 09 Oct 2008 02:25:43 -0400 Subject: [PATCH] - send set_unread_count() only when changing /Seen status --- program/lib/Auth/SASL.php | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/program/lib/Auth/SASL.php b/program/lib/Auth/SASL.php old mode 100755 new mode 100644 index 6e3dc34..9b7090c --- a/program/lib/Auth/SASL.php +++ b/program/lib/Auth/SASL.php @@ -91,7 +91,8 @@ } require_once($filename); - return new $classname(); + $obj = new $classname(); + return $obj; } } -- Gitblit v1.9.1