Restore Check-All checkbox functionality on Default/Domain Settings.

This commit is contained in:
Nate
2019-08-21 13:54:42 -06:00
parent fb375b539a
commit e499576a6c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -408,7 +408,7 @@
foreach ($subcat_ids as $domain_setting_category => $checkbox_ids) {
echo "if (category == '".$domain_setting_category."') {\n";
foreach ($checkbox_ids as $index => $checkbox_id) {
echo "document.getElementById('".escape($checkbox_id)."').checked = (what == 'all') ? true : false;\n";
echo "document.getElementById('".$checkbox_id."').checked = (what == 'all') ? true : false;\n";
}
echo "}\n";
}