summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-07-10 15:58:34 -0700
committerMark Wells <mark@freeside.biz>2013-07-10 15:58:34 -0700
commit8fbc05bbaf97373d061ccb52f3a5e227237980bb (patch)
treecf44e17dc0596a7ab09d77a679f39960eefac21f /httemplate/elements
parent8d3fcac6a40fe765c8a1a11e5c180494e9388b69 (diff)
make it harder to create supplemental packages by accident, #20689
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/tr-justtitle.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/elements/tr-justtitle.html b/httemplate/elements/tr-justtitle.html
index e9eda8b18..b87f7e128 100644
--- a/httemplate/elements/tr-justtitle.html
+++ b/httemplate/elements/tr-justtitle.html
@@ -1,5 +1,5 @@
<TR>
- <TH CLASS="background" COLSPAN=<% $opt{colspan} || 2 %> ALIGN="left">
+ <TH CLASS="background" COLSPAN=<% $opt{colspan} || 2 %> ALIGN="left" <%$id%>>
<FONT SIZE="+1"><% $opt{value} %></FONT>
</TH>
</TR>
@@ -7,5 +7,6 @@
<%init>
my %opt = @_;
+my $id = 'ID="'.$opt{id}.'"' if $opt{id};
</%init>