diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-09-12 17:42:16 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-09-12 18:46:30 -0500 |
commit | 73df7e1288401feb3c2a15a47b20e98e04c30c91 (patch) | |
tree | 8d1f64ad2888f16eec9383437a69c634fb85b3a3 /httemplate/elements | |
parent | fb58099843c95a31260b426a15d47647effd0337 (diff) |
71720: Prevent billing events from running on holidays
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/tr-checkbox-multiple.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/httemplate/elements/tr-checkbox-multiple.html b/httemplate/elements/tr-checkbox-multiple.html index bb90a820b..4d754b007 100644 --- a/httemplate/elements/tr-checkbox-multiple.html +++ b/httemplate/elements/tr-checkbox-multiple.html @@ -33,6 +33,8 @@ my $onchange = $opt{'onchange'} my $value = $opt{'curr_value'} || $opt{'value'}; +$value = $opt{default_value} if $opt{default_value} && !defined($value); + my $labels = $opt{'option_labels'} || $opt{'labels'}; my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; |