From e86587aaaffadae9fd7d2789aad9e1199c92cb8c Mon Sep 17 00:00:00 2001 From: "jouni%heikniemi.net" <> Date: Wed, 15 Jan 2003 14:26:25 +0000 Subject: Bug 148093: editmilestones.cgi shows 'xyzzy' as product bug count. r=bbaetz, a=justdave --- editmilestones.cgi | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'editmilestones.cgi') diff --git a/editmilestones.cgi b/editmilestones.cgi index 2db10ea32..e9d5d77e5 100755 --- a/editmilestones.cgi +++ b/editmilestones.cgi @@ -182,23 +182,20 @@ if ($milestone) { unless ($product) { PutHeader("Select product"); - SendSQL("SELECT products.name,products.description,'xyzzy' + SendSQL("SELECT products.name,products.description FROM products GROUP BY products.name ORDER BY products.name"); print "\n"; print " \n"; print " \n"; - print " \n"; print ""; while ( MoreSQLData() ) { - my ($product, $description, $bugs) = FetchSQLData(); + my ($product, $description) = FetchSQLData(); $description ||= "missing"; - $bugs ||= "none"; print "\n"; print " \n"; print " \n"; - print " \n"; } print "
Edit milestones of ...DescriptionBugs
$product$description$bugs
\n"; -- cgit v1.2.3-24-g4f1b