Change some widget attributes to camelCase

This commit is contained in:
nathan 2022-09-01 08:32:36 -06:00
parent 1bbcdbfeb7
commit fbb02f5bd2

View File

@ -289,9 +289,9 @@ class mail_acl
// set a custom autocomplete method for mailbox taglist // set a custom autocomplete method for mailbox taglist
if ($account_id) if ($account_id)
{ {
$tmpl->setElementAttribute('mailbox', 'autocomplete_url', __CLASS__.'::ajax_folders'); $tmpl->setElementAttribute('mailbox', 'searchUrl', __CLASS__ . '::ajax_folders');
$tmpl->setElementAttribute('mailbox', 'autocomplete_params', array( $tmpl->setElementAttribute('mailbox', 'searchOptions', array(
'acc_id' => $acc_id, 'acc_id' => $acc_id,
'account_id' => $account_id, 'account_id' => $account_id,
)); ));
} }