diff options
| author | lpsolit%gmail.com <> | 2006-03-12 19:59:06 +0000 |
|---|---|---|
| committer | lpsolit%gmail.com <> | 2006-03-12 19:59:06 +0000 |
| commit | 5ba1e26a3ccaa529133a425dc1e994e9698b8966 (patch) | |
| tree | 064466888ae6a1ba861a568b677083386de38b63 /Bugzilla | |
| parent | a17c894042669a624c8381fed63babe2e75fdc6d (diff) | |
| download | bugs-5ba1e26a3ccaa529133a425dc1e994e9698b8966.tar bugs-5ba1e26a3ccaa529133a425dc1e994e9698b8966.tar.gz bugs-5ba1e26a3ccaa529133a425dc1e994e9698b8966.tar.bz2 bugs-5ba1e26a3ccaa529133a425dc1e994e9698b8966.tar.xz bugs-5ba1e26a3ccaa529133a425dc1e994e9698b8966.zip | |
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; } |
