summaryrefslogtreecommitdiff
path: root/plugins/acl/acl.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-03-01 17:45:43 +0100
committerAleksander Machniak <alec@alec.pl>2013-03-01 17:45:43 +0100
commit2db42c7a3bf9a947f6a38dc87336968f592dc607 (patch)
tree56f6c0f6d155e70bbdcb78764008ce0d1ea13607 /plugins/acl/acl.js
parenta6fd1578c3535b423e663ec910056413610a800b (diff)
Fixed ACL edition in advanced mode
Diffstat (limited to 'plugins/acl/acl.js')
-rw-r--r--plugins/acl/acl.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/acl/acl.js b/plugins/acl/acl.js
index b6e2c811d..d6934780f 100644
--- a/plugins/acl/acl.js
+++ b/plugins/acl/acl.js
@@ -302,7 +302,7 @@ rcube_webmail.prototype.acl_init_form = function(id)
li_elements.map(function() {
val = this.value;
td = $('td.'+this.id, row);
- if (td && td.hasClass('enabled'))
+ if (td.length && td.hasClass('enabled'))
this.checked = true;
});