summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjouni%heikniemi.net <>2002-07-22 20:09:06 +0200
committerjouni%heikniemi.net <>2002-07-22 20:09:06 +0200
commit09834ca2bdbc54dbe5dcbbb6d5dbaa7c9f937d52 (patch)
tree353c173af0acf4ccfa19e96054238e89c996e7f1
parent78b4d31f05fb0140d657e30cbce376009678119b (diff)
downloadbugzilla-09834ca2bdbc54dbe5dcbbb6d5dbaa7c9f937d52.tar.gz
bugzilla-09834ca2bdbc54dbe5dcbbb6d5dbaa7c9f937d52.tar.xz
Tree bustage fix of bug 157074: a filter had the wrong name in hidden-fields template.
-rw-r--r--template/en/default/global/hidden-fields.html.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/global/hidden-fields.html.tmpl b/template/en/default/global/hidden-fields.html.tmpl
index 25c6b048f..e622e7b90 100644
--- a/template/en/default/global/hidden-fields.html.tmpl
+++ b/template/en/default/global/hidden-fields.html.tmpl
@@ -29,5 +29,5 @@
[% FOREACH field = form %]
[% NEXT IF exclude && field.key.search(exclude) %]
<input type="hidden" name="[% field.key %]"
- value="[% field.value | html | html_newline %]">
+ value="[% field.value | html | html_linebreak %]">
[% END %]