diff options
author | thomascube <thomas@roundcube.net> | 2006-07-19 19:36:35 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-07-19 19:36:35 +0000 |
commit | 078adf9da77f7ca6a3c02f9ef71be687aedb8856 (patch) | |
tree | 5a1c53d1835d4941ae4be4694ee62ef4dac8bf33 /program/lib/imap.inc | |
parent | 66e2bfa5507ebbbc73dc5fcabe511cd473e0c62a (diff) |
Improved usability (Ticket #1483807) and HTML validity; applied patch #1328032; fixed bug #1443200
Diffstat (limited to 'program/lib/imap.inc')
-rw-r--r-- | program/lib/imap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc index b8f3dea39..70abdc40e 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -1755,7 +1755,7 @@ function iil_C_ListSubscribed(&$conn, $ref, $mailbox){ $line=iil_ReadLine($fp, 500); $line=iil_MultLine($fp, $line); $a = explode(" ", $line); - if (($line[0]=="*") && ($a[1]=="LSUB")){ + if (($line[0]=="*") && ($a[1]=="LSUB" || $a[1]=="LIST")){ $line = rtrim($line); // split one line $a=iil_ExplodeQuotedString(" ", $line); |