From 961fb4f72ecf393bcac58d69da1ac1509413179e Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Tue, 9 Sep 2014 16:32:40 -0400 Subject: Bug 1053513 - remove last-visited entries when a user removes involvement from a bug r/a=glob --- Bugzilla/Bug.pm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Bugzilla/Bug.pm') diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index d03c63768..223ca1ae0 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -1134,6 +1134,13 @@ sub update { $self->update_user_last_visit($user, $delta_ts); } + # 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); + } + # Update bug ignore data if user wants to ignore mail for this bug if (exists $self->{'bug_ignored'}) { my $bug_ignored_changed; -- cgit v1.2.3-24-g4f1b