summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Migrate.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Migrate.pm')
-rw-r--r--Bugzilla/Migrate.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm
index e36b1e46a..dce795400 100644
--- a/Bugzilla/Migrate.pm
+++ b/Bugzilla/Migrate.pm
@@ -892,6 +892,15 @@ sub _insert_attachments {
$submitter->{groups} = $super_user->groups;
Bugzilla->set_user($submitter);
my $created = Bugzilla::Attachment->create({%$attachment, bug => $bug});
+ $self->_insert_comments(
+ $bug,
+ [{
+ type => CMT_ATTACHMENT_CREATED,
+ extra_data => $created->id,
+ who => $created->attacher->login,
+ bug_when => $created->attached,
+ }]
+ );
$self->debug(
' Attachment ' . $created->description . ' from ' . $submitter->login, 2);
Bugzilla->set_user($super_user);