From 52bab5423473e19b68b1ffecd66c5d714c9a9271 Mon Sep 17 00:00:00 2001 From: taggon Date: Mon, 22 Aug 2011 09:57:49 +0000 Subject: [PATCH] For revision 8831 git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8834 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/admin/tpl/js/admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()