summaryrefslogtreecommitdiffstats
path: root/enter_bug.cgi
diff options
context:
space:
mode:
authorterry%netscape.com <>1998-10-07 05:23:40 +0200
committerterry%netscape.com <>1998-10-07 05:23:40 +0200
commit5e9f3b19b20c731d302e06b432ac105ca515aa02 (patch)
tree9790c87c9bdd660764f68a9eaa95091f62bd55dc /enter_bug.cgi
parent798044275be99053ebf51ca146ce6426b9f5cb80 (diff)
downloadbugzilla-5e9f3b19b20c731d302e06b432ac105ca515aa02.tar.gz
bugzilla-5e9f3b19b20c731d302e06b432ac105ca515aa02.tar.xz
Added new "products" table, which contains a description for each
product. This description is presented when the user is entering a new bug.
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-xenter_bug.cgi8
1 files changed, 7 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi
index 8cafd918c..529c394b8 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -41,9 +41,15 @@ if (!defined $::FORM{'product'}) {
print "<H2>First, you must pick a product on which to enter\n";
print "a bug.</H2>\n";
+ print "<table>";
foreach my $p (sort (@prodlist)) {
- print "<a href=\"enter_bug.cgi?product=" . url_quote($p) . "\"&$::buffer>$p</a><br>\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 "</tr>";
}
+ print "</table>\n";
exit;
}
$::FORM{'product'} = $prodlist[0];