From 25de3add9dedd00d20ff9e35a5d20f3163ee9437 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Wed, 12 Dec 2007 07:51:14 +0000 Subject: Bug 375007: [Oracle] Some CGIs use SQL names in their "AS" clauses that don't work in Oracle Patch By Xiaoou Wu r=mkanat, a=mkanat --- Bugzilla/Attachment.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Attachment.pm') diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm index e3fe39f3a..f853cff04 100644 --- a/Bugzilla/Attachment.pm +++ b/Bugzilla/Attachment.pm @@ -88,7 +88,7 @@ sub _retrieve { 'attachments.bug_id AS bug_id', 'attachments.description AS description', 'attachments.mimetype AS contenttype', - 'attachments.submitter_id AS _attacher_id', + 'attachments.submitter_id AS attacher_id', Bugzilla->dbh->sql_date_format('attachments.creation_ts', '%Y.%m.%d %H:%i') . " AS attached", 'attachments.modification_time', @@ -188,7 +188,7 @@ the user who attached the attachment sub attacher { my $self = shift; return $self->{attacher} if exists $self->{attacher}; - $self->{attacher} = new Bugzilla::User($self->{_attacher_id}); + $self->{attacher} = new Bugzilla::User($self->{attacher_id}); return $self->{attacher}; } -- cgit v1.2.3-24-g4f1b