From 22212e5112de8a21d1727a0ea090a8a37253751b Mon Sep 17 00:00:00 2001 From: "bugreport%peshkin.net" <> Date: Thu, 20 Oct 2005 03:04:20 +0000 Subject: Bug 313008 Lists of products, milestones, etc... should be sorted Patch by Joel Peshkin r=lpsolit, a=justdave --- Bugzilla/Classification.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Bugzilla/Classification.pm') diff --git a/Bugzilla/Classification.pm b/Bugzilla/Classification.pm index fae932b85..e87852ba2 100644 --- a/Bugzilla/Classification.pm +++ b/Bugzilla/Classification.pm @@ -100,7 +100,8 @@ sub products { if (!$self->{'products'}) { my $product_ids = $dbh->selectcol_arrayref(q{ SELECT id FROM products - WHERE classification_id = ?}, undef, $self->id); + WHERE classification_id = ? + ORDER BY name}, undef, $self->id); my @products; foreach my $product_id (@$product_ids) { -- cgit v1.2.3-24-g4f1b