diff options
author | kiko%async.com.br <> | 2004-04-07 12:38:25 +0200 |
---|---|---|
committer | kiko%async.com.br <> | 2004-04-07 12:38:25 +0200 |
commit | 951d8c39c8b4493960720ae1d1abb5c2c35e4946 (patch) | |
tree | 61e54981272c38541553cbd3caff641b521df654 /template | |
parent | abcd7bf18cb0bcd7fd492191977805d15c28646b (diff) | |
download | bugzilla-951d8c39c8b4493960720ae1d1abb5c2c35e4946.tar.gz bugzilla-951d8c39c8b4493960720ae1d1abb5c2c35e4946.tar.xz |
Fix for bug 238862: remove %FORM and %COOKIE from enter_bug.cgi. Does
that, and also fixes up the bug creation template. r=justdave, a=justdave.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index bc11f2be0..049640f2a 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -27,6 +27,7 @@ h2 = "This page lets you enter a new $terms.bug into ${terms.Bugzilla}." onload="set_assign_to();" %] +[% USE Bugzilla %] <script type="text/javascript" language="JavaScript"> <!-- @@ -91,7 +92,7 @@ function set_assign_to() { <tr> <td align="right" valign="top"><strong>Reporter:</strong></td> - <td valign="top">[% reporter FILTER html %]</td> + <td valign="top">[% Bugzilla.user.login FILTER html %]</td> <td align="right" valign="top"><strong>Product:</strong></td> <td valign="top">[% product FILTER html %]</td> |