Fix typo breaking the setting of autocomplete params

This commit is contained in:
nathangray 2017-12-15 10:29:35 -07:00
parent a3b903b75c
commit d6916b3580

View File

@ -572,9 +572,9 @@ var et2_taglist = (function(){ "use strict"; return et2_selectbox.extend([et2_IR
*/
set_autocomplete_params: function(_params)
{
if (this.options.autocomplate_params != _params)
if (this.options.autocomplete_params != _params)
{
this.options.autocomplate_params = _params;
this.options.autocomplete_params = _params;
if (this.taglist) this.taglist.setDataUrlParams(_params);
}