summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Migrate.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm
index ccd6b6e12..3bdc92df1 100644
--- a/Bugzilla/Migrate.pm
+++ b/Bugzilla/Migrate.pm
@@ -869,6 +869,12 @@ sub _insert_attachments {
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);