mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-20 16:31:51 +01:00
* Fix: Add parentheses to fix expression # Fix: Add parentheses to fix expression The priority of == is higher than bitwise & which is not what the expression supposes. (See https://www.php.net/manual/en/language.operators.precedence.php). Detected as 'PhanPluginDuplicateExpressionBinaryOp: Both sides of the binary operator == are the same: 1' because of '1 == 1' * Fix: Add parentheses to fix expression # Fix: Add parentheses to fix expression The priority of == is higher than bitwise & which is not what the expression supposes. (See https://www.php.net/manual/en/language.operators.precedence.php). Detected as 'PhanPluginDuplicateExpressionBinaryOp: Both sides of the binary operator == are the same: 1' because of '1 == 1' * Fix: Add parentheses to fix expression # Fix: Add parentheses to fix expression The priority of == is higher than bitwise & which is not what the expression supposes. (See https://www.php.net/manual/en/language.operators.precedence.php). Detected as 'PhanPluginDuplicateExpressionBinaryOp: Both sides of the binary operator == are the same: 1' because of '1 == 1'