diff options
author | terry%netscape.com <> | 1998-11-21 04:18:33 +0100 |
---|---|---|
committer | terry%netscape.com <> | 1998-11-21 04:18:33 +0100 |
commit | 89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b (patch) | |
tree | 235232c5fcc2e5d1fb13ad91e8b44da262c2a3f3 /enter_bug.cgi | |
parent | 3789246e0d115ebd9b0f280c8fa209a690e425fe (diff) | |
download | bugzilla-89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b.tar.gz bugzilla-89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b.tar.xz |
Backed out Andrew's patch -- turns out it was doing quoting sublty wrong.
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index 893a992da..529c394b8 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -43,9 +43,9 @@ if (!defined $::FORM{'product'}) { print "a bug.</H2>\n"; print "<table>"; foreach my $p (sort (@prodlist)) { - print "<TR><TH ALIGN=\"RIGHT\" VALIGN=\"TOP\"><A HREF=\"enter_bug.cgi?product=" . url_quote($p) . "\"&$::buffer>$p</A>:</TH>\n"; + print "<tr><th align=right valign=top><a href=\"enter_bug.cgi?product=" . url_quote($p) . "\"&$::buffer>$p</a>:</th>\n"; if (defined $::proddesc{$p}) { - print "<TD VALIGN=\"TOP\">$::proddesc{$p}</TD>\n"; + print "<td valign=top>$::proddesc{$p}</td>\n"; } print "</tr>"; } @@ -55,7 +55,7 @@ if (!defined $::FORM{'product'}) { $::FORM{'product'} = $prodlist[0]; } -my $product = url_decode($::FORM{'product'}); +my $product = $::FORM{'product'}; confirm_login(); @@ -149,7 +149,7 @@ GetVersionTable(); my $assign_element = GeneratePersonInput('assigned_to', 1, formvalue('assigned_to')); -my $cc_element = GeneratePeopleInput('cc', 45, formvalue('cc')); +my $cc_element = GeneratePeopleInput('cc', formvalue('cc')); my $priority_popup = make_popup('priority', \@::legal_priority, |