From 44e502e498eed9f136b0769fc3cd71787f9ac232 Mon Sep 17 00:00:00 2001 From: cosworth Date: Mon, 10 Apr 2000 19:50:26 +0000 Subject: [PATCH] Made change to line 193 to make the subscribe option show up for a user that doesn't have subfolders other than the "special folder." Change < to <= git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@400 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 6354c9b4..e4290a25 100644 --- a/src/folders.php +++ b/src/folders.php @@ -190,7 +190,7 @@ /** 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