diff options
author | alecpl <alec@alec.pl> | 2009-05-14 13:18:36 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-05-14 13:18:36 +0000 |
commit | cea956cf6a28aa1a4fede59a9309ec626c4ebc2e (patch) | |
tree | 51af5ddce16668d4cf6aa13cfb9966ea27fbf695 /program/steps/mail | |
parent | 2d1a451c25c65e6bae159d2a127b5f4e66d01c46 (diff) |
- Fix autocomplete problem with capital letters (#1485792)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/autocomplete.inc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/program/steps/mail/autocomplete.inc b/program/steps/mail/autocomplete.inc index b1aba7d62..5b89ff0f3 100644 --- a/program/steps/mail/autocomplete.inc +++ b/program/steps/mail/autocomplete.inc @@ -31,11 +31,9 @@ if ($book_types && $search = get_input_value('_search', RCUBE_INPUT_POST)) { if ($result = $abook->search(array('email','name'), $search)) { while ($sql_arr = $result->iterate()) { - if (stripos((string)$sql_arr['email'], $search) !== false || stripos((string)$sql_arr['name'], $search) !== false) { $contacts[] = format_email_recipient($sql_arr['email'], $sql_arr['name']); if (count($contacts) >= $MAXNUM) break 2; - } } } } |