summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-input-text.html
diff options
context:
space:
mode:
authorivan <ivan>2010-02-04 20:39:56 +0000
committerivan <ivan>2010-02-04 20:39:56 +0000
commit4cacb3fa439b56fc7c9a742b69ec3f6ffd660433 (patch)
tree7b91bf502c5bcc974b30431fd8c96bf0bfab3288 /httemplate/elements/tr-input-text.html
parent1bfbab83c338f6a11ae26c4d197ad775c568ebde (diff)
discounts, RT#6679
Diffstat (limited to 'httemplate/elements/tr-input-text.html')
-rw-r--r--httemplate/elements/tr-input-text.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/elements/tr-input-text.html b/httemplate/elements/tr-input-text.html
index 81efa1fe5..21279339e 100644
--- a/httemplate/elements/tr-input-text.html
+++ b/httemplate/elements/tr-input-text.html
@@ -1,6 +1,6 @@
<% include('tr-td-label.html', @_ ) %>
- <TD <% $cell_style %> ID="<% $opt{input_id} || $opt{id}.'_input0' %>"><% include('input-text.html', @_ ) %></TD>
+ <TD <% $colspan %> <% $cell_style %> ID="<% $opt{input_id} || $opt{id}.'_input0' %>"><% include('input-text.html', @_ ) %></TD>
</TR>
@@ -10,4 +10,6 @@ my %opt = @_;
my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
+my $colspan = $opt{'colspan'} ? 'COLSPAN="'.$opt{'colspan'}.'"' : '';
+
</%init>