diff options
author | terry%netscape.com <> | 1998-11-17 04:43:49 +0100 |
---|---|---|
committer | terry%netscape.com <> | 1998-11-17 04:43:49 +0100 |
commit | 0ca30382be83fccfc4e352096c87c56bbf8a673c (patch) | |
tree | 36342c8de0050b5bed4b67b29a14eb97e78c5e28 /enter_bug.cgi | |
parent | 1cf02cc7c177a691ae9980f928ae30efb84a8c99 (diff) | |
download | bugzilla-0ca30382be83fccfc4e352096c87c56bbf8a673c.tar.gz bugzilla-0ca30382be83fccfc4e352096c87c56bbf8a673c.tar.xz |
Patch by Andrew Anderson <andrew@redhat.com>. Many minor bugfixes and cleanup.
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 529c394b8..893a992da 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 = $::FORM{'product'}; +my $product = url_decode($::FORM{'product'}); confirm_login(); @@ -149,7 +149,7 @@ GetVersionTable(); my $assign_element = GeneratePersonInput('assigned_to', 1, formvalue('assigned_to')); -my $cc_element = GeneratePeopleInput('cc', formvalue('cc')); +my $cc_element = GeneratePeopleInput('cc', 45, formvalue('cc')); my $priority_popup = make_popup('priority', \@::legal_priority, |