diff options
| author | Tiago Mello <timello@linux.vnet.ibm.com> | 2010-06-21 19:36:53 -0700 |
|---|---|---|
| committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-21 19:36:53 -0700 |
| commit | 059dd26f1cf118f33711bb4078df5ae1aef4f36a (patch) | |
| tree | b42d96c86d81fecaef6f94cf784ba76ebe289dd2 /template/en/default/bug | |
| parent | c72ad4001456936e9299bf0b8ae76c5326f1de16 (diff) | |
| download | bugs-059dd26f1cf118f33711bb4078df5ae1aef4f36a.tar bugs-059dd26f1cf118f33711bb4078df5ae1aef4f36a.tar.gz bugs-059dd26f1cf118f33711bb4078df5ae1aef4f36a.tar.bz2 bugs-059dd26f1cf118f33711bb4078df5ae1aef4f36a.tar.xz bugs-059dd26f1cf118f33711bb4078df5ae1aef4f36a.zip | |
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/bug')
| -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 %]"> |
