diff options
author | mkanat%bugzilla.org <> | 2006-08-12 08:45:07 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-08-12 08:45:07 +0200 |
commit | cc69d134483d1e10423475735b1084535dd075b7 (patch) | |
tree | 4e440861d3302bdacea97fd64ae477acf12bd6d8 /enter_bug.cgi | |
parent | b7358c827a981c240e925b5a547dfb7bcdfc6738 (diff) | |
download | bugzilla-cc69d134483d1e10423475735b1084535dd075b7.tar.gz bugzilla-cc69d134483d1e10423475735b1084535dd075b7.tar.xz |
Bug 348057: Move the checks for bug visibility out of Bugzilla::Bug->new
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index a5a4cedca..269f14317 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -307,7 +307,7 @@ $cloned_bug_id = $cgi->param('cloned_bug_id'); if ($cloned_bug_id) { ValidateBugID($cloned_bug_id); - $cloned_bug = new Bugzilla::Bug($cloned_bug_id, $user->id); + $cloned_bug = new Bugzilla::Bug($cloned_bug_id); } if (scalar(@{$product->components}) == 1) { |