]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 330186: Crash when changing the status of a bug which has dependencies (new fix...
authorlpsolit%gmail.com <>
Sun, 16 Apr 2006 01:12:10 +0000 (01:12 +0000)
committerlpsolit%gmail.com <>
Sun, 16 Apr 2006 01:12:10 +0000 (01:12 +0000)
Bugzilla/BugMail.pm

index 4d151cd7f23bd4d9b97d4d15bccfcb0537df6360..d7be12a1a43cb2229aa8655ba36d0eb646459585 100644 (file)
@@ -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;
         }