diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-03-05 08:01:42 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-03-05 08:01:42 +0000 |
| commit | c1fd7d3cbffe0aeb13dc67c11c449ecc5f4a88b7 (patch) | |
| tree | d8d8603171a26cc21af8822b3772f5b701907327 /roundcubemail/program | |
| parent | a374701fe43b634fd895db203e3c437738c89f9f (diff) | |
- Fix some emails are not shown using Cyrus IMAP (#1487820)
git-svn-id: https://svn.roundcube.net/trunk@4592 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap_generic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap_generic.php b/roundcubemail/program/include/rcube_imap_generic.php index 43b2dff8b..c867911bb 100644 --- a/roundcubemail/program/include/rcube_imap_generic.php +++ b/roundcubemail/program/include/rcube_imap_generic.php @@ -1344,7 +1344,7 @@ class rcube_imap_generic $result[$id] = ''; } } else if ($mode == 2) { - if (preg_match('/\((UID|RFC822\.SIZE) ([0-9]+)/', $line, $matches)) { + if (preg_match('/(UID|RFC822\.SIZE) ([0-9]+)/', $line, $matches)) { $result[$id] = trim($matches[2]); } else { $result[$id] = 0; |
