Make sure we are not requesting server for an empty value option or other widgets but select-timezone as server won't find anything and it will fall into an infinitive loop, e.g. select-cat widget.

This commit is contained in:
Hadi Nategh 2015-10-12 09:57:42 +00:00
parent b56467a0c5
commit d48ad7da79

View File

@ -1120,9 +1120,10 @@ jQuery.extend(et2_selectbox,
else
{
// Check that the value is in there
// Make sure we are not requesting server for an empty value option
// as server won't find anything and it will fall into an infinitive loop
if(attrs.value && attrs.value != "" && attrs.value != "0")
// Make sure we are not requesting server for an empty value option or
// other widgets but select-timezone as server won't find anything and
// it will fall into an infinitive loop, e.g. select-cat widget.
if(attrs.value && attrs.value != "" && attrs.value != "0" && attrs.type == "select-timezone")
{
var missing_option = true;
for(var i = 0; i < cache.length && missing_option; i++)