Commit 66c3f7d9 authored by Byron Jones's avatar Byron Jones

Bug 1020023: update a user's last-visited timestamp for a bug when they perform any actions on it

r=dkl,a=glob
parent 15b70d2e
......@@ -1047,6 +1047,11 @@ sub update {
$self->{delta_ts} = $delta_ts;
}
# Update last-visited
if ($user->is_involved_in_bug($self)) {
$self->update_user_last_visit($user, $delta_ts);
}
# Update bug ignore data if user wants to ignore mail for this bug
if (exists $self->{'bug_ignored'}) {
my $bug_ignored_changed;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment