summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/BugMail.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index 4d151cd7f..d7be12a1a 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -316,7 +316,9 @@ sub ProcessOneBug {
$interestingchange = 0;
}
$thisdiff .= FormatTriple($fielddescription{$what}, $old, $new);
- if ($what eq 'bug_status' && &::is_open_state($old) ne &::is_open_state($new)) {
+ if ($what eq 'bug_status'
+ && Bugzilla::Bug::is_open_state($old) ne Bugzilla::Bug::is_open_state($new))
+ {
$interestingchange = 1;
}