diff options
author | Thomas <tb@woodcrest.local> | 2013-10-09 12:02:52 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-01-16 11:16:09 +0100 |
commit | 017c4f19fd91aa1f658131fae272617a14598a12 (patch) | |
tree | f280574e9b952cebc45a1b6b74c91c25d8333ef7 /plugins | |
parent | 5740b10bf8cdb82f795d88e1f020440c8dae4acb (diff) |
Refactor multi-threaded autocomple contact searching to make it available for other purposes, too
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/acl/acl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/acl/acl.php b/plugins/acl/acl.php index a840bcd58..203340bdb 100644 --- a/plugins/acl/acl.php +++ b/plugins/acl/acl.php @@ -86,7 +86,7 @@ class acl extends rcube_plugin $this->load_config(); $search = rcube_utils::get_input_value('_search', rcube_utils::INPUT_GPC, true); - $sid = rcube_utils::get_input_value('_id', rcube_utils::INPUT_GPC); + $reqid = rcube_utils::get_input_value('_reqid', rcube_utils::INPUT_GPC); $users = array(); if ($this->init_ldap()) { @@ -115,7 +115,7 @@ class acl extends rcube_plugin sort($users, SORT_LOCALE_STRING); - $this->rc->output->command('ksearch_query_results', $users, $search, $sid); + $this->rc->output->command('ksearch_query_results', $users, $search, $reqid); $this->rc->output->send(); } |