{* $Id$ *} {* this script (un/)checks all checkboxes with id 'banning-section' *} {jq notonready=true} function CheckAll() { for (var i = 0; i < document.banningform.elements.length; i++) { var e = document.banningform.elements[i]; if (e.type == 'checkbox' && e.id == 'banning-section' && e.name != 'checkall') { e.checked = document.banningform.checkall.checked; } } } {/jq} {* this script (un/)checks all checkboxes with id 'multi-banning-section' *} {jq notonready=true} function CheckMultiIP() { for (var i = 0; i < document.banningform.elements.length; i++) { var e = document.banningform.elements[i]; if (e.type == 'checkbox' && e.id == 'multi-banning-section' && e.name != 'checkall') { e.checked = document.banningform.checkmultiip.checked; } } } {/jq} {title help="Banning"}{tr}Banning system{/tr}{/title}
{if $updated} {remarksbox type="note" title="{tr}Note:{/tr}"} {tr}Banning rules have been updated{/tr} {/remarksbox} {/if}