summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 0c2f659c5..962c3f36f 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -1125,7 +1125,7 @@ sub update {
# If a user is no longer involved, remove their last visit entry
my $last_visits = Bugzilla::BugUserLastVisit->match({bug_id => $self->id});
foreach my $lv (@$last_visits) {
- $lv->remove_from_db() unless $lv->user->is_involved_with_bug($self);
+ $lv->remove_from_db() unless $lv->user->is_involved_in_bug($self);
}
# Update bug ignore data if user wants to ignore mail for this bug