diff options
author | alecpl <alec@alec.pl> | 2009-04-14 09:24:21 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-04-14 09:24:21 +0000 |
commit | 80e227859406450a5df73abeb8b3ed24a87fcccc (patch) | |
tree | 0aa48dc080d8648bfd4941e3c6bea006389690fc /program/steps/mail/autocomplete.inc | |
parent | 8b961eef049fae0c8afefbc6ea057910aad1fa60 (diff) |
- simplified code for serverside autocomplete + set rows limit on server side only
Diffstat (limited to 'program/steps/mail/autocomplete.inc')
-rw-r--r-- | program/steps/mail/autocomplete.inc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/program/steps/mail/autocomplete.inc b/program/steps/mail/autocomplete.inc index 26acc88c2..b1aba7d62 100644 --- a/program/steps/mail/autocomplete.inc +++ b/program/steps/mail/autocomplete.inc @@ -19,7 +19,7 @@ */ -$MAXNUM = 15; // same limit as in app.js +$MAXNUM = 15; $contacts = array(); $book_types = (array) $RCMAIL->config->get('autocomplete_addressbooks', 'sql'); @@ -33,12 +33,11 @@ if ($book_types && $search = get_input_value('_search', RCUBE_INPUT_POST)) { 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; } } } - - if (count($contacts) >= $MAXNUM) - break; } sort($contacts); |