summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-04-10 08:18:16 +0200
committerlpsolit%gmail.com <>2005-04-10 08:18:16 +0200
commitc15ee7a4d566c9e4911ac0cc0e94edb8d357709d (patch)
tree5c84986f432a6da31e277c95e0da72bf9c8b3608 /template
parentadd735039c2d148077d5a7baca1a36f50f5bfab3 (diff)
downloadbugzilla-c15ee7a4d566c9e4911ac0cc0e94edb8d357709d.tar.gz
bugzilla-c15ee7a4d566c9e4911ac0cc0e94edb8d357709d.tar.xz
Bug 225818: %FORM, %MFORM, and %COOKIE need to go away, in favor of the CGI methods - Patch by Teemu Mannermaa <wicked@etlicon.fi> r=LpSolit a=myk
Diffstat (limited to 'template')
-rw-r--r--template/en/default/filterexceptions.pl4
-rw-r--r--template/en/default/request/email.txt.tmpl5
2 files changed, 3 insertions, 6 deletions
diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl
index 7b7ba5134..c669b2e15 100644
--- a/template/en/default/filterexceptions.pl
+++ b/template/en/default/filterexceptions.pl
@@ -417,10 +417,6 @@
'linktext.$type',
],
-'bug/create/comment.txt.tmpl' => [
- 'form.comment',
-],
-
'bug/create/create.html.tmpl' => [
'g.bit',
'g.description',
diff --git a/template/en/default/request/email.txt.tmpl b/template/en/default/request/email.txt.tmpl
index 569688cef..d59cad0ec 100644
--- a/template/en/default/request/email.txt.tmpl
+++ b/template/en/default/request/email.txt.tmpl
@@ -62,9 +62,10 @@ Attachment [% attidsummary %]
[%- END %]
[%- FILTER bullet = wrap(80) %]
-[% IF form.comment.length > 0 %]
+[% USE Bugzilla %]
+[% IF Bugzilla.cgi.param("comment").length > 0 %]
------- Additional Comments from [% user.identity %]
-[%+ form.comment %]
+[%+ Bugzilla.cgi.param("comment") %]
[% END %]
[%- END %]