summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--httemplate/elements/tablebreak-tr-title.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/httemplate/elements/tablebreak-tr-title.html b/httemplate/elements/tablebreak-tr-title.html
index 35dc05d8b..ee2831231 100644
--- a/httemplate/elements/tablebreak-tr-title.html
+++ b/httemplate/elements/tablebreak-tr-title.html
@@ -1,5 +1,14 @@
</TABLE>
-<TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=0>
+<TABLE <% $id %> BGCOLOR="#cccccc" BORDER=0 CELLSPACING=0>
<% include('tr-title.html', @_ ) %>
+
+<%init>
+
+my %opt = @_;
+
+my $id = '';
+$id = 'ID="'. $opt{'table_id'}. '"' if $opt{'table_id'};
+
+</%init>