summaryrefslogtreecommitdiff
path: root/httemplate/elements/checkboxes.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-04-30 18:07:50 -0700
committerMark Wells <mark@freeside.biz>2016-04-30 18:07:50 -0700
commit770d8237cda1b6459962d31f6ae86997ad5843be (patch)
treeb57e641ca8ef41478ca37e7af6617bbd82e8f8e8 /httemplate/elements/checkboxes.html
parent8ff31f04ed1e2da3e09c56e72ab0f879d0b7ab75 (diff)
allow sending email to specific contact classes, #33316
Diffstat (limited to 'httemplate/elements/checkboxes.html')
-rw-r--r--httemplate/elements/checkboxes.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/elements/checkboxes.html b/httemplate/elements/checkboxes.html
index ad9d691b9..b07b6545f 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>