diff --git a/modules/admin/tpl/js/admin.js b/modules/admin/tpl/js/admin.js index e632457ff..b0bf40ecd 100644 --- a/modules/admin/tpl/js/admin.js +++ b/modules/admin/tpl/js/admin.js @@ -46,7 +46,7 @@ jQuery(function($){ .find('input:checkbox') .filter(function(){ var $this = $(this); - return !$this.prop('disabled') && ($this.attr('name') == name) || ($this.data('name') == name); + return !$this.prop('disabled') && (($this.attr('name') == name) || ($this.data('name') == name)); }) .prop('checked', $this.prop('checked')) .end()