diff options
author | Mark Wells <mark@freeside.biz> | 2013-07-10 16:05:23 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-07-10 16:05:23 -0700 |
commit | 88d3c33682585244571ee7622949c3e9213284bf (patch) | |
tree | 34ea777ffa249e2dd1eacccff42ed0b6f9a15688 /httemplate/elements/tr-justtitle.html | |
parent | 14e965c64e2c7d26b6c02987dd1a07a628e6dc0a (diff) |
make it harder to create supplemental packages by accident, #20689
Diffstat (limited to 'httemplate/elements/tr-justtitle.html')
-rw-r--r-- | httemplate/elements/tr-justtitle.html | 3 |
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> |