diff options
author | bugreport%peshkin.net <> | 2002-08-19 10:06:56 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2002-08-19 10:06:56 +0200 |
commit | fa343202c29b61feea3dd3c4ed8f51968e174e9a (patch) | |
tree | 6bee309253c751294bbe253e9bac466b2aa2f520 | |
parent | def13a98688a5d68e345e3f63969ea9396a3fe88 (diff) | |
download | bugzilla-fa343202c29b61feea3dd3c4ed8f51968e174e9a.tar.gz bugzilla-fa343202c29b61feea3dd3c4ed8f51968e174e9a.tar.xz |
Fix typo from 43600
r=bbaetz x2
-rwxr-xr-x | importxml.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/importxml.pl b/importxml.pl index cffeca68c..215ba353e 100755 --- a/importxml.pl +++ b/importxml.pl @@ -570,7 +570,7 @@ for (my $k=1 ; $k <= $bugqty ; $k++) { push (@values, SqlQuote($qa_contact)); push (@query, "qa_contact"); } else { - SendSQL("SELECT initialqacontact FROM components, products " + SendSQL("SELECT initialqacontact FROM components, products " . "WHERE components.product_id = products.id" . " AND products.name = " . SqlQuote($product[0]) . " AND components.name = " . SqlQuote($component[0]) ); |