diff options
author | alecpl <alec@alec.pl> | 2009-01-19 11:46:52 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-01-19 11:46:52 +0000 |
commit | ebf96ef8bf9fb7273951bc3ae0dcc61082f607b4 (patch) | |
tree | c7fd0090e8c13c7c766838eb4f2a892acc3bd78d /program/steps/mail | |
parent | 0129d7c914f4d9247a7e8bb5ff5f655cfa98de1f (diff) |
- fix warning when 'autocomplete_addressbooks' is not an array (#1485691)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/autocomplete.inc | 5 |
1 files changed, 3 insertions, 2 deletions
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); |