summaryrefslogtreecommitdiffstats
path: root/importxml.pl
diff options
context:
space:
mode:
Diffstat (limited to 'importxml.pl')
-rwxr-xr-ximportxml.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/importxml.pl b/importxml.pl
index 989eb31e0..5b14fc655 100755
--- a/importxml.pl
+++ b/importxml.pl
@@ -671,8 +671,8 @@ sub process_bug {
# Since there is no default version for a product, we check that the one
# coming over is valid. If not we will use the first one in @versions
# and warn them.
- my $version =
- new Bugzilla::Version( $product->id, $bug_fields{'version'} );
+ my $version = new Bugzilla::Version(
+ { product => $product, name => $bug_fields{'version'} });
push( @query, "version" );
if ($version) {