diff options
Diffstat (limited to 'template/en/default/bug/process/midair.html.tmpl')
-rw-r--r-- | template/en/default/bug/process/midair.html.tmpl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/template/en/default/bug/process/midair.html.tmpl b/template/en/default/bug/process/midair.html.tmpl index 491e5b269..2c2427616 100644 --- a/template/en/default/bug/process/midair.html.tmpl +++ b/template/en/default/bug/process/midair.html.tmpl @@ -20,8 +20,6 @@ #%] [%# INTERFACE: - # form: hash; the form values submitted to the script - # mform: hash; the form multi-values submitted to the script # operations: array; bug activity since the user last displayed the bug form, # used by bug/activity/table.html.tmpl to display recent changes that will # be overwritten if the user submits these changes. See that template @@ -34,6 +32,10 @@ # bug_id: number; the ID of the bug being changed. #%] +[%# The global Bugzilla->cgi object is used to obtain form variable values. %] +[% USE Bugzilla %] +[% cgi = Bugzilla.cgi %] + [% PROCESS global/variables.none.tmpl %] [% UNLESS header_done %] @@ -62,7 +64,7 @@ <p> Your comment was:<br> - <blockquote><pre>[% form.comment FILTER html %]</pre></blockquote> + <blockquote><pre>[% cgi.param("comment") FILTER html %]</pre></blockquote> </p> <p> |