fix : When comparing two booleans, it is generally considered safer to use the strict comparison operator.

This commit is contained in:
Philippe GRAND 2019-02-21 14:25:09 +01:00
parent a3a89b755f
commit 33164bcb3e

View File

@ -456,7 +456,7 @@ if ($result) {
if ($objp->country_sell == '1') {
$objp->code_sell_p = $objp->code_sell;
$objp->aarowid_suggest = $objp->aarowid;
} elseif ($isinEEC == true) {
} elseif ($isinEEC === true) {
$objp->code_sell_p = $objp->code_sell_intra;
$objp->aarowid_suggest = $objp->aarowid_intra;
} else {