dolibarr/htdocs/bom
MDW bf4243e0ab
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:44:59 +01:00
..
ajax Fix: GETPOST(...,'int') to GETPOSTINT(...) (#28448) 2024-02-27 14:05:53 +01:00
class Fix $mybool |=... which is binary op, not boolean op 2024-03-21 13:44:59 +01:00
lib Merge branch '18.0' of git@github.com:Dolibarr/dolibarr.git into 19.0 2024-01-10 15:12:50 +01:00
tpl FIX: if we stop for security purpose, we must exit a non zero value. 2024-03-16 23:08:15 +01:00
bom_agenda.php Fix regression in GETPOST limit 2024-03-16 11:41:00 +01:00
bom_card.php Fix PhanPluginDuplicateConditionalUnnecessary "X ? Y : Y" (Simplify) 2024-03-14 19:47:15 +01:00
bom_document.php Fix regression in GETPOST limit 2024-03-16 11:41:00 +01:00
bom_list.php Fix regression in GETPOST limit 2024-03-16 11:41:00 +01:00
bom_net_needs.php Fix: GETPOST(...,'int') to GETPOSTINT(...) (#28448) 2024-02-27 14:05:53 +01:00
bom_note.php Fix: GETPOST(...,'int') to GETPOSTINT(...) (#28448) 2024-02-27 14:05:53 +01:00
modulebuilder.txt