diff options
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Bug.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 3be324825..217253b02 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -3488,9 +3488,11 @@ sub comments { $comment->{count} = $count++; $comment->{bug} = $self; } - Bugzilla::Hook::process('bug_comments', { bug => $self, comments => $self->{'comments'} }); # Some bugs may have no comments when upgrading old installations. Bugzilla::Comment->preload($self->{'comments'}) if @{ $self->{'comments'} }; + # BMO - for comment deletion support + Bugzilla::Hook::process('bug_comments', + { bug => $self, comments => $self->{'comments'} }); } return unless defined wantarray; |