Files
dolibarr/htdocs/core/class
MDW 2ec5504dcb 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:12 +01:00
..
2024-03-12 09:56:36 +01:00
2024-03-04 18:27:49 +01:00
2024-02-25 10:00:09 +01:00
2024-03-20 10:15:10 +01:00
2024-02-28 23:42:23 +01:00
2024-03-19 16:04:11 +01:00