From 51a3d59da99a8fdaac5193968b7061b72cfc5e25 Mon Sep 17 00:00:00 2001 From: cosworth Date: Mon, 10 Apr 2000 20:54:26 +0000 Subject: [PATCH] Okay, I was wrong about the <= thing, I changed it back to < which does work. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@404 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/folders.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/folders.php b/src/folders.php index 167993c3..3d676ba1 100644 --- a/src/folders.php +++ b/src/folders.php @@ -231,7 +231,7 @@ exit; /** SUBSCRIBE TO FOLDERS **/ echo ""; - if ($count_special_folders <= count($boxes)) { + if ($count_special_folders = count($boxes)) { $imap_stream = sqimap_login ($username, $key, $imapServerAddress, $imapPort, 1); $boxes = sqimap_mailbox_list_all ($imap_stream); -- 2.25.1