PHP 7.4 Error Notice
-
I updated my PHP to 7.4 and notice the following warning:
type E_NOTICE (8)
info Trying to access array offset on value of type bool
file [removed]/wp-content/plugins/download-monitor/src/DLM.php
line 236Checking the code, it’s currently
// fix current support for some themes if ( is_array( $current_support[0] ) ) { $current_support = $current_support[0]; }
Line 236 should be changed to
if ( is_array( $current_support ) ) {
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘PHP 7.4 Error Notice’ is closed to new replies.