From: Dylan William Hardison Date: Wed, 10 Sep 2014 15:29:14 +0000 (-0400) Subject: Bug 1053513 - fix patching error X-Git-Tag: bugzilla-4.5.6~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab1b842ba2e2f9ad3774c6c415129a4e196acc57;p=thirdparty%2Fbugzilla.git Bug 1053513 - fix patching error I yearn for review board and more git-based development. --- diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index e7e4e898b4..3aba1774ac 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