diff options
author | alecpl <alec@alec.pl> | 2011-05-27 13:01:05 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-05-27 13:01:05 +0000 |
commit | 516467080bd822cb94a4a9ef58a168dcdaf7535b (patch) | |
tree | 79dbd8e0463985fba5af3de12130b6aa4ccf97fc /program/steps/addressbook/search.inc | |
parent | d7344819834e469c2e5875f756f1ad973b2e06d9 (diff) |
- Fix handling of "<" character in contact data, search fields and folder names, identity name and organization fields (#1487864)
Diffstat (limited to 'program/steps/addressbook/search.inc')
-rw-r--r-- | program/steps/addressbook/search.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/search.inc b/program/steps/addressbook/search.inc index 7d6775507..8d25a8fbc 100644 --- a/program/steps/addressbook/search.inc +++ b/program/steps/addressbook/search.inc @@ -22,7 +22,7 @@ $CONTACTS->set_page(1); $_SESSION['page'] = 1; -$search = trim(get_input_value('_q', RCUBE_INPUT_GET)); +$search = trim(get_input_value('_q', RCUBE_INPUT_GET, true)); $search_request = md5('addr'.$search); // get contacts for this user |