I have users who don't know that "Cancel" will take them back to the issue list without sending emails to everyone. Instead, they like to click "Save & Return" to get back.
To prevent these empty changelist emails, I added line of code to BugNET PRO 1.5.105.0 in BugNET.BLL\IssueNotificationManager.cs at beginning of method SendIssueNotifications:
public static void SendIssueNotifications(int issueId, IEnumerable<IssueHistory> issueChanges)
{
// Don't send notifications if change count is zero
if (issueChanges.Count() == 0) return;
I have users who don't know that "Cancel" will take them back to the issue list without sending emails to everyone. Instead, they like to click "Save & Return" to get back.
To prevent these empty changelist emails, I added line of code to BugNET PRO 1.5.105.0 in BugNET.BLL\IssueNotificationManager.cs at beginning of method SendIssueNotifications: