From: lpsolit%gmail.com <> Date: Sun, 12 Mar 2006 19:59:06 +0000 (+0000) Subject: Bug 330186: Crash when changing the status of a bug which has dependencies - Patch... X-Git-Tag: bugzilla-2.23.1~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ba1e26a3ccaa529133a425dc1e994e9698b8966;p=thirdparty%2Fbugzilla.git 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) --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 99851b932a..89bebaab36 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; }