diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-08 08:53:43 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-08 08:55:07 +0200 |
commit | ceff79b14a856a91a627b1a4a5eba445c862351b (patch) | |
tree | a360cc6e4fb9b41818e5d7240290da4cb24f1e58 /program/steps/mail | |
parent | 7883ecb8ec16108d074f63330b489516c32a3b2f (diff) |
Fix bug where "With attachment" option in search filter wasn't selected after return from mail view (#1489774)
Conflicts:
CHANGELOG
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 072ee716c..e93e2f600 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1984,7 +1984,7 @@ function rcmail_search_filter($attrib) $ctypes = array('application/', 'multipart/m', 'multipart/signed', 'multipart/report'); // Build search string of "with attachment" filter - $attachment = str_repeat(' OR', count($ctypes)-1); + $attachment = trim(str_repeat(' OR', count($ctypes)-1)); foreach ($ctypes as $type) { $attachment .= ' HEADER Content-Type ' . rcube_imap_generic::escape($type); } |