i have this error after upgrade to php 7.1
PHP Warning: A non-numeric value encountered in public_html/wp-includes/formatting.php on line 3221
here the code on that file.
function human_time_diff( $from, $to = '' ) {
if ( empty( $to ) ) {
$to = time();
}
//line 3221
$diff = (int) abs( $to - $from );