Fix explorer with old version of browsers
This commit is contained in:
		| @@ -403,15 +403,15 @@ jQuery(document).ready(function($) | ||||
|                     res = true; | ||||
|  | ||||
|                 // check URL parameters and compute result | ||||
|                 if (paramYear != "")        res &&= checkYear(i.year); | ||||
|                 if (paramMonth != "")       res &&= checkMonth(i.month); | ||||
|                 if (paramDimension != "")   res &&= checkDimension(i.dimension); | ||||
|                 if (paramGenre != "")       res &&= checkGenre(i.genre); | ||||
|                 if (paramTheme != "")       res &&= checkTheme(i.theme); | ||||
|                 if (paramPlace != "")       res &&= checkPlace(i.place); | ||||
|                 if (paramTag != "")         res &&= checkTag(i.tags); | ||||
|                 if (paramPhoto != "")       res &&= checkPhoto(i.photo); | ||||
|                 if (paramHelp != "")        res &&= checkHelp(i.help); | ||||
|                 if (paramYear != "")        res = res && checkYear(i.year); | ||||
|                 if (paramMonth != "")       res = res && checkMonth(i.month); | ||||
|                 if (paramDimension != "")   res = res && checkDimension(i.dimension); | ||||
|                 if (paramGenre != "")       res = res && checkGenre(i.genre); | ||||
|                 if (paramTheme != "")       res = res && checkTheme(i.theme); | ||||
|                 if (paramPlace != "")       res = res && checkPlace(i.place); | ||||
|                 if (paramTag != "")         res = res && checkTag(i.tags); | ||||
|                 if (paramPhoto != "")       res = res && checkPhoto(i.photo); | ||||
|                 if (paramHelp != "")        res = res && checkHelp(i.help); | ||||
|  | ||||
|                 if (!res) | ||||
|                     continue; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user