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:53:43 +0200 |
commit | 0ccef59cfa1bf4b87fe616d94abab59f10d6717a (patch) | |
tree | f32a2e0bd4a16d9a1ee699815da8d8b1c39050ba /program/steps/mail/func.inc | |
parent | d2eb687b45cce68812574d440cb3f65ecb415f87 (diff) |
Fix bug where "With attachment" option in search filter wasn't selected after return from mail view (#1489774)
Diffstat (limited to 'program/steps/mail/func.inc')
-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 7adc06550..58f529f94 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -2036,7 +2036,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); } |