summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Product.pm
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2005-10-20 05:04:20 +0200
committerbugreport%peshkin.net <>2005-10-20 05:04:20 +0200
commit22212e5112de8a21d1727a0ea090a8a37253751b (patch)
tree9b19ff506d0ce443cb4abe27c80be6a9cdd991a8 /Bugzilla/Product.pm
parent89222752d44a4c99e6b901e95adf9e613d705815 (diff)
downloadbugzilla-22212e5112de8a21d1727a0ea090a8a37253751b.tar.gz
bugzilla-22212e5112de8a21d1727a0ea090a8a37253751b.tar.xz
Bug 313008 Lists of products, milestones, etc... should be sorted
Patch by Joel Peshkin <bugreport@peshkin.net> r=lpsolit, a=justdave
Diffstat (limited to 'Bugzilla/Product.pm')
-rw-r--r--Bugzilla/Product.pm9
1 files changed, 6 insertions, 3 deletions
diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm
index f55b5dd67..2bc9da52d 100644
--- a/Bugzilla/Product.pm
+++ b/Bugzilla/Product.pm
@@ -100,7 +100,8 @@ sub components {
if (!defined $self->{components}) {
my $ids = $dbh->selectcol_arrayref(q{
SELECT id FROM components
- WHERE product_id = ?}, undef, $self->id);
+ WHERE product_id = ?
+ ORDER BY name}, undef, $self->id);
my @components;
foreach my $id (@$ids) {
@@ -145,7 +146,8 @@ sub versions {
if (!defined $self->{versions}) {
my $values = $dbh->selectcol_arrayref(q{
SELECT value FROM versions
- WHERE product_id = ?}, undef, $self->id);
+ WHERE product_id = ?
+ ORDER BY value}, undef, $self->id);
my @versions;
foreach my $value (@$values) {
@@ -163,7 +165,8 @@ sub milestones {
if (!defined $self->{milestones}) {
my $values = $dbh->selectcol_arrayref(q{
SELECT value FROM milestones
- WHERE product_id = ?}, undef, $self->id);
+ WHERE product_id = ?
+ ORDER BY sortkey}, undef, $self->id);
my @milestones;
foreach my $value (@$values) {