diff options
author | lpsolit%gmail.com <> | 2005-04-10 08:18:16 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-04-10 08:18:16 +0200 |
commit | c15ee7a4d566c9e4911ac0cc0e94edb8d357709d (patch) | |
tree | 5c84986f432a6da31e277c95e0da72bf9c8b3608 /template/en/default/request | |
parent | add735039c2d148077d5a7baca1a36f50f5bfab3 (diff) | |
download | bugzilla-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/en/default/request')
-rw-r--r-- | template/en/default/request/email.txt.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
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 %] |