thomascube
2010-03-02 7c9d922b96f9a88b350d6e07f5bde84ccc40f9b0
program/steps/mail/autocomplete.inc
@@ -15,15 +15,15 @@
 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
 +-----------------------------------------------------------------------+
 $Id: $
 $Id$
*/
$MAXNUM = 15;  // same limit as in app.js
$MAXNUM = 15;
$contacts = array();
$book_types = (array) $RCMAIL->config->get('autocomplete_addressbooks', 'sql');
if ($book_types && $search = get_input_value('_search', RCUBE_INPUT_POST)) {
if ($book_types && $search = get_input_value('_search', RCUBE_INPUT_POST, true)) {
  foreach ($book_types as $id) {
    $abook = $RCMAIL->get_address_book($id);
@@ -31,20 +31,17 @@
    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;
      }
    }
    if (count($contacts) >= $MAXNUM)
      break;
  }
  
  sort($contacts);
}
$OUTPUT->command('ksearch_query_results', $contacts);
$OUTPUT->command('ksearch_query_results', $contacts, $search);
$OUTPUT->send();
?>
?>