Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[issue tracker] Email watchers when issue is updated or created #8248

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions modules/issue_tracker/php/edit.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,13 @@ class Edit extends \NDB_Page implements ETagCalculator
'issueID' => $issueID,
]
);
// Send email to watchers if they are not the assignee
if (isset($issueValues['assignee'])
&& $issueValues['assignee'] == $usersWatching
) {
continue;
}
$this->emailUser($issueID, $usersWatching, $user);
}
}
}
Expand Down