From 3f1a0a8168493175b6c44e18edc25bd655f8c8b2 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 19 Dec 2006 18:35:42 +0000 Subject: Bug 339384: Make Bugzilla::Milestone use Bugzilla::Object - Patch by Max Kanat-Alexander r=LpSolit a=justdave --- Bugzilla/Product.pm | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'Bugzilla/Product.pm') diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm index c525efc11..728bd0652 100644 --- a/Bugzilla/Product.pm +++ b/Bugzilla/Product.pm @@ -120,16 +120,11 @@ sub milestones { my $dbh = Bugzilla->dbh; if (!defined $self->{milestones}) { - my $values = $dbh->selectcol_arrayref(q{ - SELECT value FROM milestones - WHERE product_id = ? - ORDER BY sortkey}, undef, $self->id); + my $ids = $dbh->selectcol_arrayref(q{ + SELECT id FROM milestones + WHERE product_id = ?}, undef, $self->id); - my @milestones; - foreach my $value (@$values) { - push @milestones, new Bugzilla::Milestone($self->id, $value); - } - $self->{milestones} = \@milestones; + $self->{milestones} = Bugzilla::Milestone->new_from_list($ids); } return $self->{milestones}; } -- cgit v1.2.3-24-g4f1b