diff options
author | mkanat%bugzilla.org <> | 2006-08-12 06:45:07 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-08-12 06:45:07 +0000 |
commit | cc69d134483d1e10423475735b1084535dd075b7 (patch) | |
tree | 4e440861d3302bdacea97fd64ae477acf12bd6d8 /importxml.pl | |
parent | Bug 310753: editflagtypes.cgi page fails w3 validation - Patch by victory(_RS... (diff) | |
download | bugzilla-cc69d134483d1e10423475735b1084535dd075b7.tar.gz bugzilla-cc69d134483d1e10423475735b1084535dd075b7.tar.bz2 bugzilla-cc69d134483d1e10423475735b1084535dd075b7.zip |
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 'importxml.pl')
-rwxr-xr-x | importxml.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/importxml.pl b/importxml.pl index e048aac40..68b2cd34f 100755 --- a/importxml.pl +++ b/importxml.pl @@ -224,7 +224,7 @@ sub flag_handler { } ); } else { - my $bug = new Bugzilla::Bug( $bugid, $exporterid ); + my $bug = new Bugzilla::Bug($bugid); $flag_types = $bug->flag_types; } unless ($flag_types){ |