Commit 8df71955 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 249863: Move hidden initial state INPUT field at the beginning of…

Patch for bug 249863: Move hidden initial state INPUT field at the beginning of the table (previously it was inserted between table rows, causing invalid HTML); patch by GavinS <bugzilla@chimpychompy.org>; r=vladd, a=justdave.
parent a33e1550
......@@ -70,6 +70,12 @@ 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>
......@@ -169,9 +175,6 @@ function set_assign_to() {
<td colspan="2"></td>
</tr>
[% ELSE %]
<input type="hidden" name="bug_status"
value="[% default.bug_status FILTER html %]">
[% END %]
<tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment