diff options
author | thomascube <thomas@roundcube.net> | 2011-07-17 19:01:28 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-07-17 19:01:28 +0000 |
commit | 03eb13f11cf7dd695be3aab95b4e39e510169a49 (patch) | |
tree | 45b982f5ca3a7fa0caa01e71a4f95e08063a8042 /program/steps | |
parent | 4d9f620292f9f22430a8d9e118e4853dc41d8def (diff) |
Small improvements and codestyle
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/autocomplete.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/autocomplete.inc b/program/steps/mail/autocomplete.inc index fbb61a442..395c0e12b 100644 --- a/program/steps/mail/autocomplete.inc +++ b/program/steps/mail/autocomplete.inc @@ -37,7 +37,7 @@ if ($RCMAIL->action == 'group-expand') { $OUTPUT->command('replace_group_recipients', $gid, join(', ', $members)); } } -else if ($book_types && $search = get_input_value('_search', RCUBE_INPUT_GPC, true)) { +else if ($book_types && ($search = get_input_value('_search', RCUBE_INPUT_GPC, true))) { $contacts = array(); $books_num = count($book_types); |