diff options
author | Mark Wells <mark@freeside.biz> | 2016-04-30 18:07:50 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-05-02 13:24:53 -0700 |
commit | 755159a8654a2eda89badd1498f8def3a472cb15 (patch) | |
tree | 05908f7215c7a7f3f9a0b4b416e668b9a80f5338 /httemplate/elements | |
parent | bd714630f4747b3f411ae53515a734e9e771c6b3 (diff) |
allow sending email to specific contact classes, #33316
Conflicts:
FS/FS/cust_main_Mixin.pm
FS/FS/msg_template/email.pm
httemplate/misc/email-customers.html
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/checkboxes.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/elements/checkboxes.html b/httemplate/elements/checkboxes.html index 69ef18fb9..1f342241d 100644 --- a/httemplate/elements/checkboxes.html +++ b/httemplate/elements/checkboxes.html @@ -27,7 +27,7 @@ Example: </%doc> -<TABLE CELLSPACING=0 CELLPADDING=0> +<TABLE CELLSPACING=0 CELLPADDING=0 <% $style %>> % unless ( $opt{'disable_links'} ) { @@ -108,4 +108,8 @@ $opt{'error_checked_callback'} ||= sub { $cgi->param($opt{'element_name_prefix'}. $name ); }; +my $style = ''; +if ($opt{'style'}) { + $style = 'STYLE="' . $opt{'style'} . '"'; +} </%init> |