Files
dolibarr/htdocs/comm
MDW e44e29c446 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:03 +01:00
..
2024-03-19 02:59:00 +01:00
2024-03-16 11:41:00 +01:00
2024-03-16 11:41:00 +01:00