diff options
author | 2004-12-12 09:41:09 +0000 | |
---|---|---|
committer | 2004-12-12 09:41:09 +0000 | |
commit | 0afb29125fb4fddae2a060c0e1b4a203f647dd41 (patch) | |
tree | 2cb310a8ce6b99a9b5780d8734760ee9a4c924cf /template | |
parent | Patch for bug 271474: Fix SQL syntax error when updating max votes per bug in... (diff) | |
download | bugzilla-0afb29125fb4fddae2a060c0e1b4a203f647dd41.tar.gz bugzilla-0afb29125fb4fddae2a060c0e1b4a203f647dd41.tar.bz2 bugzilla-0afb29125fb4fddae2a060c0e1b4a203f647dd41.zip |
Patch for bug 273873: bug-creation template for UNCONFIRMED shouldn't set status to NEW; patch by Nick.Barnes@pobox.com, r=justdave, a=justdave.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 274e30ca7..d8954a2a3 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -70,12 +70,6 @@ function set_assign_to() { <form name="Create" id="Create" method="post" action="post_bug.cgi"> <input type="hidden" name="product" value="[% product FILTER html %]"> -[% IF bug_status.size <= 1 %] - <input type="hidden" name="bug_status" - value="[% default.bug_status FILTER html %]"> -[% END %] - - <table cellspacing="2" cellpadding="0" border="0"> <tr> @@ -168,14 +162,18 @@ function set_assign_to() { <td colspan="3"></td> </tr> -[% IF bug_status.size > 1 %] <tr> +[% IF bug_status.size <= 1 %] + <input type="hidden" name="bug_status" + value="[% default.bug_status FILTER html %]"> + <td align="right" valign="top"><strong>Initial State:</strong></td> + <td valign="top">[% default.bug_status FILTER html %]</td> +[% ELSE %] [% sel = { description => 'Initial State', name => 'bug_status' } %] [% INCLUDE select %] - +[% END %] <td colspan="2"></td> </tr> -[% END %] <tr> <td align="right"> |