diff --git a/htdocs/product/card.php b/htdocs/product/card.php
index ebf9c093c02..27bf63f08fd 100644
--- a/htdocs/product/card.php
+++ b/htdocs/product/card.php
@@ -1187,7 +1187,7 @@ else
{
print '
| '.$langs->trans("ProductAccountancySellIntraCode").' | ';
print '';
- if($type = 0) {
+ if($type == 0) {
$accountancy_code_sell_intra = (GETPOST('accountancy_code_sell_intra', 'alpha')?(GETPOST('accountancy_code_sell_intra', 'alpha')):$conf->global->ACCOUNTING_PRODUCT_SOLD_INTRA_ACCOUNT);
} else {
$accountancy_code_sell_intra = GETPOST('accountancy_code_sell_intra', 'alpha');
@@ -1199,7 +1199,7 @@ else
// Accountancy_code_sell_export
print ' |
| '.$langs->trans("ProductAccountancySellExportCode").' | ';
print '';
- if($type = 0)
+ if($type == 0)
{
$accountancy_code_sell_export = (GETPOST('accountancy_code_sell_export', 'alpha')?(GETPOST('accountancy_code_sell_export', 'alpha')):$conf->global->ACCOUNTING_PRODUCT_SOLD_EXPORT_ACCOUNT);
} else {
|