diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-27 13:01:05 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-27 13:01:05 +0000 |
| commit | ae8aa5d090c6807156efb0bad28d175ac235e6ba (patch) | |
| tree | 1bd52121379dd4ef6d82ee82a67ddad40a88dd10 /roundcubemail/program/steps/mail | |
| parent | f665aaaffa4023cfc13980833634684c0524f427 (diff) | |
- Fix handling of "<" character in contact data, search fields and folder names, identity name and organization fields (#1487864)
git-svn-id: https://svn.roundcube.net/trunk@4812 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail')
| -rw-r--r-- | roundcubemail/program/steps/mail/search.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/roundcubemail/program/steps/mail/search.inc b/roundcubemail/program/steps/mail/search.inc index 39fb32fc9..c038d772f 100644 --- a/roundcubemail/program/steps/mail/search.inc +++ b/roundcubemail/program/steps/mail/search.inc @@ -27,10 +27,11 @@ $_SESSION['page'] = 1; $imap_charset = RCMAIL_CHARSET; // get search string -$str = get_input_value('_q', RCUBE_INPUT_GET); -$filter = get_input_value('_filter', RCUBE_INPUT_GET); -$mbox = get_input_value('_mbox', RCUBE_INPUT_GET); +$str = get_input_value('_q', RCUBE_INPUT_GET, true); +$mbox = get_input_value('_mbox', RCUBE_INPUT_GET, true); +$filter = get_input_value('_filter', RCUBE_INPUT_GET); $headers = get_input_value('_headers', RCUBE_INPUT_GET); + $search_request = md5($mbox.$filter.$str); // add list filter string |
