Error on line 86, array offset on value of type bool
-
With error-reporting turned on, this appears:
<b>Notice</b>: Trying to access array offset on value of type bool in /wp-content/plugins/easy-coming-soon/coming-soon-plugin.php on line 86Line 86 currently reads:
if($value['status']=='0') return;
Change this to:
if(isset($value['status'] ) && $value['status']=='0') return;
Not sure if this is the totally correct fix, as $value doesn’t seem to be an array.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Error on line 86, array offset on value of type bool’ is closed to new replies.