From: cosworth Date: Mon, 10 Apr 2000 19:50:26 +0000 (+0000) Subject: Made change to line 193 to make the subscribe option show up for a user that doesn... X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=44e502e498eed9f136b0769fc3cd71787f9ac232;hp=71fd53839430c7fb5171a80cddb72e3f639555bc 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 --- 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);