dolibarr/htdocs/compta/paiement
MDW a42203cc93
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:09 +01:00
..
cheque Fix $mybool |=... which is binary op, not boolean op 2024-03-21 13:45:07 +01:00
class Fix $mybool |=... which is binary op, not boolean op 2024-03-21 13:45:09 +01:00
card.php Fix: $form argument to price() must be int (#28699) 2024-03-08 21:30:04 +01:00
index.php add comment 2022-09-07 20:08:59 +02:00
info.php Fix: GETPOST(...,'int') to GETPOSTINT(...) (#28448) 2024-02-27 14:05:53 +01:00
list.php Fix $arrayfields typing lost by dol_sort_array() by forcing the type 2024-03-20 23:29:48 +01:00
rapport.php Fix: GETPOST(...,'int') to GETPOSTINT(...) (#28448) 2024-02-27 14:05:53 +01:00
tovalidate.php Fix regression in GETPOST limit 2024-03-16 11:41:00 +01:00