From 3154b337738036d402321654046ed453059d82da Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Fri, 20 Dec 2002 11:37:49 +0000 Subject: Bug 186218: importxml.pl was doing a query against the products table using the old schema Patch by Jonathan Schatz r= justdave, a= justdave --- importxml.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'importxml.pl') 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"); -- cgit v1.2.3-24-g4f1b