diff options
author | Tiago Mello <timello@linux.vnet.ibm.com> | 2010-06-22 04:36:53 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-22 04:36:53 +0200 |
commit | 059dd26f1cf118f33711bb4078df5ae1aef4f36a (patch) | |
tree | b42d96c86d81fecaef6f94cf784ba76ebe289dd2 /template/en/default | |
parent | c72ad4001456936e9299bf0b8ae76c5326f1de16 (diff) | |
download | bugzilla-059dd26f1cf118f33711bb4078df5ae1aef4f36a.tar.gz bugzilla-059dd26f1cf118f33711bb4078df5ae1aef4f36a.tar.xz |
Bug 570987: Fix the warning 'Argument "" isn't numeric in numeric gt
(>) at template/en/default/bug/field-label.html.tmpl line 34'
r=mkanat, a=mkanat
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/field-label.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/field-label.html.tmpl b/template/en/default/bug/field-label.html.tmpl index 858970117..54f97ecd7 100644 --- a/template/en/default/bug/field-label.html.tmpl +++ b/template/en/default/bug/field-label.html.tmpl @@ -31,7 +31,7 @@ <[% tag_name FILTER html %] class="field_label [% ' bz_hidden_field' IF hidden %] [%- ' required' IF field.is_mandatory %]" id="field_label_[% field.name FILTER html %]" - [% IF rowspan > 0 %] rowspan="[% rowspan FILTER html %]"[% END %]> + [% IF rowspan %] rowspan="[% rowspan FILTER html %]"[% END %]> [% IF editable %] <label for="[% field.name FILTER html %]"> |