diff options
author | justdave%syndicomm.com <> | 2002-12-20 12:37:49 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-12-20 12:37:49 +0100 |
commit | 3154b337738036d402321654046ed453059d82da (patch) | |
tree | 45b76c706d3c8108a03da6e47a182e326ebec89f | |
parent | 909d037ec1924ec49ba325e4dc77275e6697b078 (diff) | |
download | bugzilla-3154b337738036d402321654046ed453059d82da.tar.gz bugzilla-3154b337738036d402321654046ed453059d82da.tar.xz |
Bug 186218: importxml.pl was doing a query against the products table using the old schema
Patch by Jonathan Schatz <jon@vmware.com>
r= justdave, a= justdave
-rwxr-xr-x | importxml.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/importxml.pl b/importxml.pl index 1777bfc4a..6575e2f62 100755 --- a/importxml.pl +++ b/importxml.pl @@ -467,7 +467,7 @@ for (my $k=1 ; $k <= $bugqty ; $k++) { push (@query, "target_milestone"); } else { SendSQL("SELECT defaultmilestone FROM products " . - "WHERE product = " . SqlQuote($product[0])); + "WHERE name = " . SqlQuote($product[0])); my $tm = FetchOneColumn(); push (@values, SqlQuote($tm)); push (@query, "target_milestone"); |