PHP 7.1 Warning Notice
-
Hello,
On my server (PHP 7.1), a PHP Warning is logged from class-wp-smush :
PHP Warning: A non-numeric value encountered in /home/web/******/httpdocs/wp-content/plugins/wp-smushit/lib/class-wp-smush.php on line 1968,(1969,1970)In order to fix it, can you edit the line 1966 :
Before :
$stats['stats']['size_before'] = $stats['stats']['size_after'] = $stats['stats']['time'] = '';
After :
$stats['stats']['size_before'] = $stats['stats']['size_after'] = $stats['stats']['time'] = 0;(Change the value from ” (string) to 0 (numeric))
Can you test this change on older versions and update code for next plugin-updates ?
The topic ‘PHP 7.1 Warning Notice’ is closed to new replies.