PP
This commit is contained in:
@@ -64,7 +64,7 @@ else {
|
||||
SELECT name, code, unit_id, product_category_id
|
||||
FROM ecmproducts WHERE id='".$row['product_id']."'"));
|
||||
|
||||
$row['name'] = $res['name'];
|
||||
$row['name'] = str_replace('"', "'", $res['name']);
|
||||
$row['product_code'] = $res['code'];
|
||||
$row['ecmproductcategory_id'] = $res['product_category_id'];
|
||||
$row['unit_id'] = $res['unit_id'];
|
||||
@@ -87,7 +87,7 @@ else {
|
||||
SELECT name, code, unit_id, product_category_id
|
||||
FROM ecmproducts WHERE id='".$row['product_id']."'"));
|
||||
|
||||
$row['name'] = $res['name'];
|
||||
$row['name'] = str_replace('"', "", $res['name']);
|
||||
$row['product_code'] = $res['code'];
|
||||
$row['ecmproductcategory_id'] = $res['product_category_id'];
|
||||
$row['unit_id'] = $res['unit_id'];
|
||||
|
||||
Reference in New Issue
Block a user