Fix useless fields that prevent insertion of a new product in the product_description table in OSCommerce 2.2 RC1

This commit is contained in:
ywarnier 2007-08-14 22:40:59 +00:00
parent 0a9b292715
commit 38491743e9

View File

@ -85,9 +85,9 @@ $sql_data_array = array('products_quantity' => $prod['quant'],
$sql_data_array = array('products_name' => $prod['nom'],
'products_description' => $prod['desc'],
'products_url' => $prod['url'],
'products_head_title_tag' => $prod['nom'],
'products_head_desc_tag' => $prod['desc'],
'products_head_keywords_tag' => '',
//'products_head_title_tag' => $prod['nom'],
//'products_head_desc_tag' => $prod['desc'],
//'products_head_keywords_tag' => '',
'products_id' => $products_id,
'language_id' => $language_id
);