Fix bug where "searching..." message wasn't removed on autocomplete response
This commit is contained in:
parent
02102bea4c
commit
1a6f7e8b28
1 changed files with 2 additions and 2 deletions
|
@ -376,10 +376,10 @@ class kolab_delegation extends rcube_plugin
|
|||
// Delegate autocompletion
|
||||
else if ($this->rc->action == 'plugin.delegation-autocomplete') {
|
||||
$search = get_input_value('_search', RCUBE_INPUT_GPC, true);
|
||||
$sid = get_input_value('_id', RCUBE_INPUT_GPC);
|
||||
$reqid = get_input_value('_reqid', RCUBE_INPUT_GPC);
|
||||
$users = $engine->list_users($search);
|
||||
|
||||
$this->rc->output->command('ksearch_query_results', $users, $search, $sid);
|
||||
$this->rc->output->command('ksearch_query_results', $users, $search, $reqid);
|
||||
}
|
||||
|
||||
$this->rc->output->send();
|
||||
|
|
Loading…
Add table
Reference in a new issue