summaryrefslogtreecommitdiffstats
path: root/importxml.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2002-12-20 12:37:49 +0100
committerjustdave%syndicomm.com <>2002-12-20 12:37:49 +0100
commit3154b337738036d402321654046ed453059d82da (patch)
tree45b76c706d3c8108a03da6e47a182e326ebec89f /importxml.pl
parent909d037ec1924ec49ba325e4dc77275e6697b078 (diff)
downloadbugzilla-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
Diffstat (limited to 'importxml.pl')
-rwxr-xr-ximportxml.pl2
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");