PHP 7.4 support: Deprecated: Unparenthesized
-
PHP 7.4 deprecates the unparenthesized ternary operator, see https://www.php.net/manual/en/migration74.deprecated.php
I’m getting warning from the paid plugin: Deprecated: Unparenthesized
a ? b : c ? d : e
is deprecated. Use either(a ? b : c) ? d : e
ora ? b : (c ? d : e)
in /wp-content/plugins/flow-flow/includes/LABase.php on line 260Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘PHP 7.4 support: Deprecated: Unparenthesized’ is closed to new replies.