fixed: Form CheckList Select All button now functions correctly

This commit is contained in:
Doug Bell 2008-08-12 17:44:40 +00:00
parent f64293e530
commit 48408ac5be
2 changed files with 3 additions and 1 deletions

View file

@ -15,6 +15,7 @@
- fixed: WSClient now correctly handles SOAP::Som returns of simple arrays of scalars and a exception producing if test turned into an eval.
- fixed: Gallery now gives an error message when a Zip archive is being naughty
- fixed: Upgrade 7.5.10-7.5.11 upgrades transaction payment gateway info.
- fixed: Form CheckList select all button now functions properly
7.5.19
- fixed: paginator doesn't show correct number of page links with a limit applied

View file

@ -33,7 +33,8 @@ WebGUI.Form.toggleAllCheckboxesInForm
// Change the state
input.checked = state;
// Run the appropriate scripts
input.onchange();
if ( input.onchange )
input.onchange();
}
// Update the saved state