diff options
author | bbaetz%student.usyd.edu.au <> | 2002-07-19 23:03:51 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-07-19 23:03:51 +0200 |
commit | 603921c6defa74ef95318c14323a18cf26f3a390 (patch) | |
tree | c1fd02f21c852fc66cbaefb6b53c065c2ee5e095 /template/en/default/global | |
parent | 42c44b90deed374299ad79604a733ad52116ba7f (diff) | |
download | bugzilla-603921c6defa74ef95318c14323a18cf26f3a390.tar.gz bugzilla-603921c6defa74ef95318c14323a18cf26f3a390.tar.xz |
Bug 157074 - verify-new-product doubles comment linefeeds on Win32
r=myk, jouni
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/hidden-fields.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/en/default/global/hidden-fields.html.tmpl b/template/en/default/global/hidden-fields.html.tmpl index 76040bea1..25c6b048f 100644 --- a/template/en/default/global/hidden-fields.html.tmpl +++ b/template/en/default/global/hidden-fields.html.tmpl @@ -28,5 +28,6 @@ [%# Generate hidden form fields for non-excluded fields. %] [% FOREACH field = form %] [% NEXT IF exclude && field.key.search(exclude) %] - <input type="hidden" name="[% field.key %]" value="[% field.value FILTER html %]"> + <input type="hidden" name="[% field.key %]" + value="[% field.value | html | html_newline %]"> [% END %] |