From 40cec31b70098cc0916ace383d426d812d19d044 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sat, 5 Nov 2005 20:24:29 +0000 Subject: Bug 315129: [PostgreSQL] Attachments are sorted by last changed time instead of creation time - Patch by Frédéric Buclin r=myk a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Attachment.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm index c4e7580ae..bb40e74c9 100644 --- a/Bugzilla/Attachment.pm +++ b/Bugzilla/Attachment.pm @@ -100,7 +100,8 @@ sub _retrieve { my $records = Bugzilla->dbh->selectall_arrayref("SELECT $columns FROM attachments WHERE attach_id IN (" . - join(",", @$ids) . ")", + join(",", @$ids) . ") + ORDER BY attach_id", { Slice => {} }); return $records; } @@ -394,8 +395,7 @@ sub get_attachments_by_bug { my ($class, $bug_id) = @_; my $attach_ids = Bugzilla->dbh->selectcol_arrayref("SELECT attach_id FROM attachments - WHERE bug_id = ? - ORDER BY attach_id", + WHERE bug_id = ?", undef, $bug_id); my $attachments = Bugzilla::Attachment->get_list($attach_ids); return $attachments; -- cgit v1.2.3-24-g4f1b