diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-07 15:53:48 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-07 15:53:48 +0000 |
| commit | 3487c89ca3d09eb548edd9c52c0f727d9fc18c42 (patch) | |
| tree | b61fa2f2c85cdac214f399e5a4af2a9f4e68c957 /roundcubemail/program/steps | |
| parent | dc93d39258b899e2cb92e74b2932b9a442868015 (diff) | |
Fix group expansion which was lost in r3457 + apply patch for autocompletion timeouts from #1486059
git-svn-id: https://svn.roundcube.net/trunk@3476 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
| -rw-r--r-- | roundcubemail/program/steps/mail/autocomplete.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/roundcubemail/program/steps/mail/autocomplete.inc b/roundcubemail/program/steps/mail/autocomplete.inc index 724f14af5..b761f5398 100644 --- a/roundcubemail/program/steps/mail/autocomplete.inc +++ b/roundcubemail/program/steps/mail/autocomplete.inc @@ -26,6 +26,7 @@ if ($RCMAIL->action == 'group-expand') { $abook = $RCMAIL->get_address_book(get_input_value('_source', RCUBE_INPUT_GPC)); if ($gid = get_input_value('_gid', RCUBE_INPUT_GPC)) { $members = array(); + $abook->set_group($gid); $abook->set_pagesize(1000); // TODO: limit number of group members by config $result = $abook->list_records(array('email','name')); while ($result && ($sql_arr = $result->iterate())) |
