diff options
| author | richs <richs@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-06-30 22:02:28 +0000 |
|---|---|---|
| committer | richs <richs@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-06-30 22:02:28 +0000 |
| commit | bc59c415dc74b894beae86286a7fdc75c6d6adcb (patch) | |
| tree | d8fbaf80d896cfb5f4c9b8d33d7d23d06adbcdc3 /roundcubemail/program/lib | |
| parent | 46f595457a887d3f4ab4e9991bd64260ebccf58f (diff) | |
Misc bug and compatibility fixes
git-svn-id: https://svn.roundcube.net/trunk@270 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib')
| -rw-r--r-- | roundcubemail/program/lib/imap.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index 51db669c6..b8f3dea39 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/program/lib/imap.inc @@ -675,7 +675,7 @@ function iil_C_FetchHeaderIndex(&$conn, $mailbox, $message_set, $index_field, $n if (empty($index_field)) $index_field="DATE"; $index_field = strtoupper($index_field); - if (empty($message_set)) return array(); + if ((empty($message_set)) || ($message_set == "1:0")) return array(); //$fields_a["DATE"] = ($IMAP_USE_INTERNAL_DATE?6:1); $fields_a['DATE'] = 1; @@ -2107,4 +2107,4 @@ function iil_C_ClearFolder(&$conn, $folder){ return (iil_C_Expunge($conn, $folder) >= 0); } -?>
\ No newline at end of file +?> |
