diff options
author | 2002-12-20 11:37:49 +0000 | |
---|---|---|
committer | 2002-12-20 11:37:49 +0000 | |
commit | 3154b337738036d402321654046ed453059d82da (patch) | |
tree | 45b76c706d3c8108a03da6e47a182e326ebec89f /importxml.pl | |
parent | Bug 185944: radio buttons for adding/removing groups on the change-multiple-b... (diff) | |
download | bugzilla-3154b337738036d402321654046ed453059d82da.tar.gz bugzilla-3154b337738036d402321654046ed453059d82da.tar.bz2 bugzilla-3154b337738036d402321654046ed453059d82da.zip |
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
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 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"); |