Added new "products" table, which contains a description for each

product.  This description is presented when the user is entering a
new bug.


git-svn-id: svn://10.0.0.236/trunk@12055 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%netscape.com
1998-10-06 20:23:40 +00:00
parent 9a8f60cf9e
commit c62b24b506
4 changed files with 62 additions and 1 deletions

View File

@@ -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];