diff options
author | lpsolit%gmail.com <> | 2007-07-12 02:40:23 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-07-12 02:40:23 +0200 |
commit | dc9f2badbb567a3104c72cc148c78cf587f03a43 (patch) | |
tree | 3886d8060d06263d630f0809c4ff83982b253f4a | |
parent | c8ade4d646e6eeb2386aaaa852f2d1c0f1ef1653 (diff) | |
download | bugzilla-dc9f2badbb567a3104c72cc148c78cf587f03a43.tar.gz bugzilla-dc9f2badbb567a3104c72cc148c78cf587f03a43.tar.xz |
Bug 387705: Single dependency loop detection not working anymore - Patch by Ronaldo Maia <romaia@async.com.br> r/a=LpSolit
-rwxr-xr-x | Bugzilla/Bug.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 1f4ac606f..321220194 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -877,9 +877,10 @@ sub _check_dependencies { $deps_in{$type} = \@bug_ids; } - + # And finally, check for dependency loops. - my %deps = ValidateDependencies($deps_in{dependson}, $deps_in{blocked}); + my $bug_id = ref($invocant) ? $invocant->id : 0; + my %deps = ValidateDependencies($deps_in{dependson}, $deps_in{blocked}, $bug_id); return ($deps{'dependson'}, $deps{'blocked'}); } |