summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-05-04 16:22:44 -0700
committerIvan Kohler <ivan@freeside.biz>2016-05-04 16:22:44 -0700
commitbb64a357a453b06e0079444ce21c7e85d9c1527d (patch)
treedef10d4e2f229e6e514968a70e6fed2e23bfee9e /httemplate/elements
parentf97b6be9496d0948c81052cd060784554c26b58f (diff)
parentff9e2f92752c65f3bc3f1812111591bbd2cb355f (diff)
Merge branch 'FREESIDE_3_BRANCH' of git.freeside.biz:/home/git/freeside into FREESIDE_3_BRANCH
Diffstat (limited to 'httemplate/elements')
-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 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>