Merge pull request #2357 from phptek/cms-access-checkbox-toggle

BUGFIX: CMS permissions checkbox won't untoggle once selected
This commit is contained in:
Ingo Schommer 2013-09-02 03:15:34 -07:00
commit 1f84db1c54

View File

@ -77,8 +77,8 @@
}); });
} else { } else {
checkboxes.each(function() { checkboxes.each(function() {
$(this).attr('checked', ''); $(this).prop('checked', false);
$(this).attr('disabled', ''); $(this).prop('disabled', false);
}); });
} }
} }