dolibarr/htdocs/compta/paiement/cheque
MDW 8e5871d1fc
Fix $mybool |=... which is binary op, not boolean op
# Fix $mybool |=... which is binary op, not boolean op

This fixes PhanTypeInvalidLeftOperandOfBitwiseOp.
Replace $var |= ... with $var = ... || $var .
Add cast before ... when needed (@include does not always return bool).
|= always evaluates expression, there for || $var, not $var ||
2024-03-21 13:45:07 +01:00
..
class Fix $mybool |=... which is binary op, not boolean op 2024-03-21 13:45:07 +01:00
card.php Fix: Initialise array variables before assigning fields (#28725) 2024-03-09 02:43:57 +01:00
index.php Fix #28071 - New branch to fix bad merge (#28083) 2024-02-09 15:58:49 +01:00
list.php Fix $arrayfields typing lost by dol_sort_array() by forcing the type 2024-03-20 23:29:48 +01:00