From ebf96ef8bf9fb7273951bc3ae0dcc61082f607b4 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 19 Jan 2009 11:46:52 +0000 Subject: - fix warning when 'autocomplete_addressbooks' is not an array (#1485691) --- program/steps/mail/autocomplete.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'program/steps/mail/autocomplete.inc') diff --git a/program/steps/mail/autocomplete.inc b/program/steps/mail/autocomplete.inc index 1000436c4..c840e9cf9 100644 --- a/program/steps/mail/autocomplete.inc +++ b/program/steps/mail/autocomplete.inc @@ -21,10 +21,11 @@ $MAXNUM = 15; // same limit as in app.js $contacts = array(); +$book_types = (array) $RCMAIL->config->get('autocomplete_addressbooks', 'sql'); -if ($search = get_input_value('_search', RCUBE_INPUT_POST)) { +if ($book_types && $search = get_input_value('_search', RCUBE_INPUT_POST)) { - foreach ($RCMAIL->config->get('autocomplete_addressbooks', array('sql')) as $id) { + foreach ($book_types as $id) { $abook = $RCMAIL->get_address_book($id); $abook->set_pagesize($MAXNUM); -- cgit v1.2.3