From 5ba1e26a3ccaa529133a425dc1e994e9698b8966 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sun, 12 Mar 2006 19:59:06 +0000 Subject: Bug 330186: Crash when changing the status of a bug which has dependencies - Patch by Teemu Mannermaa r=LpSolit r=mkanat a=LpSolit/mkanat (emergency checkin procedure) --- Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 99851b932..89bebaab3 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -313,7 +313,7 @@ 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' && &::is_open_state($old) ne &::is_open_state($new)) { $interestingchange = 1; } -- cgit v1.2.3-24-g4f1b