summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2014-09-10 17:29:14 +0200
committerDylan William Hardison <dylan@hardison.net>2014-09-10 17:31:11 +0200
commitab1b842ba2e2f9ad3774c6c415129a4e196acc57 (patch)
tree2aa2eae1e4acd8ffa52623ce8f4f54ceddcab96a /Bugzilla/Bug.pm
parent02c6a481ed267c7f35af46fa61402a9ce7789484 (diff)
downloadbugzilla-ab1b842ba2e2f9ad3774c6c415129a4e196acc57.tar.gz
bugzilla-ab1b842ba2e2f9ad3774c6c415129a4e196acc57.tar.xz
Bug 1053513 - fix patching error
I yearn for review board and more git-based development.
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 e7e4e898b..3aba1774a 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -1141,7 +1141,7 @@ sub update {
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