summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Attachment.pm
diff options
context:
space:
mode:
authorbugzilla%glob.com.au <>2005-07-10 22:34:32 +0200
committerbugzilla%glob.com.au <>2005-07-10 22:34:32 +0200
commitf7b63bd7f86a028796283faf088062258151b8ed (patch)
tree66d080bbf3fd232320e32e94ee067324af4b029e /Bugzilla/Attachment.pm
parenta6ebccf4825baa6f465d1e07ec4f1e04bca04178 (diff)
downloadbugzilla-f7b63bd7f86a028796283faf088062258151b8ed.tar.gz
bugzilla-f7b63bd7f86a028796283faf088062258151b8ed.tar.xz
Bug 297870: attachments table/list should show attachment creator
Patch by Byron Jones <bugzilla@glob.com.au> r=LpSolit,a=justdave
Diffstat (limited to 'Bugzilla/Attachment.pm')
-rw-r--r--Bugzilla/Attachment.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm
index 4d223d633..10fa6ddfc 100644
--- a/Bugzilla/Attachment.pm
+++ b/Bugzilla/Attachment.pm
@@ -75,7 +75,8 @@ sub query
my $list = $dbh->selectall_arrayref("SELECT attach_id, " .
$dbh->sql_date_format('creation_ts', '%Y.%m.%d %H:%i') .
", mimetype, description, ispatch,
- isobsolete, isprivate, LENGTH(thedata)
+ isobsolete, isprivate, LENGTH(thedata),
+ submitter_id
FROM attachments
WHERE bug_id = ? ORDER BY attach_id",
undef, $bugid);
@@ -85,7 +86,9 @@ sub query
my %a;
($a{'attachid'}, $a{'date'}, $a{'contenttype'},
$a{'description'}, $a{'ispatch'}, $a{'isobsolete'},
- $a{'isprivate'}, $a{'datasize'}) = @$row;
+ $a{'isprivate'}, $a{'datasize'}, $a{'submitter_id'}) = @$row;
+
+ $a{'submitter'} = new Bugzilla::User($a{'submitter_id'});
# Retrieve a list of flags for this attachment.
$a{'flags'} = Bugzilla::Flag::match({ 'attach_id' => $a{'attachid'},