diff options
author | lpsolit%gmail.com <> | 2006-03-12 20:59:06 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-03-12 20:59:06 +0100 |
commit | 5ba1e26a3ccaa529133a425dc1e994e9698b8966 (patch) | |
tree | 064466888ae6a1ba861a568b677083386de38b63 /Bugzilla | |
parent | a17c894042669a624c8381fed63babe2e75fdc6d (diff) | |
download | bugzilla-5ba1e26a3ccaa529133a425dc1e994e9698b8966.tar.gz bugzilla-5ba1e26a3ccaa529133a425dc1e994e9698b8966.tar.xz |
Bug 330186: Crash when changing the status of a bug which has dependencies - Patch by Teemu Mannermaa <wicked@etlicon.fi> r=LpSolit r=mkanat a=LpSolit/mkanat (emergency checkin procedure)
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/BugMail.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |