diff --git a/www/include/options/accessLists/actionsACL/formActionsAccess.ihtml b/www/include/options/accessLists/actionsACL/formActionsAccess.ihtml index 586c1c5e500f6dcb5a66798ed37742ad64a90997..412cca2c88b3c225834189e692d1712d9a9c232d 100644 --- a/www/include/options/accessLists/actionsACL/formActionsAccess.ihtml +++ b/www/include/options/accessLists/actionsACL/formActionsAccess.ihtml @@ -142,25 +142,25 @@ jQuery('input[name=all_service]').change(function(){ if (jQuery(this).prop('checked')) { - jQuery('.serviceCheckbox input').attr('checked',true); + jQuery('.serviceCheckbox input').attr('checked', true).prop('checked', true); } else { - jQuery('.serviceCheckbox input').attr('checked',false); + jQuery('.serviceCheckbox input').attr('checked', false).prop('checked', false); } }); jQuery('input[name=all_host]').change(function(){ if (jQuery(this).prop('checked')) { - jQuery('.hostCheckbox input').attr('checked',true); + jQuery('.hostCheckbox input').attr('checked', true).prop('checked', true); } else { - jQuery('.hostCheckbox input').attr('checked',false); + jQuery('.hostCheckbox input').attr('checked', false).prop('checked', false); } }); jQuery('input[name=all_engine]').change(function(){ if (jQuery(this).prop('checked')) { - jQuery('.engineCheckbox input').attr('checked',true); + jQuery('.engineCheckbox input').attr('checked', true).prop('checked', true); } else { - jQuery('.engineCheckbox input').attr('checked',false); + jQuery('.engineCheckbox input').attr('checked', false).prop('checked', false); } });