Warning: mktime() expects parameter 4 to be int
-
Hello,
We have received a warning on the single team page:
Warning: mktime() expects parameter 4 to be int, string given in /…/wp-content/plugins/sportspress/modules/sportspress-birthdays.php on line 220
PHP version -7.4
SportsPress version – Version 2.7.8line 220:
$age = ( date( ‘md’, date( ‘U’, mktime( 0, 0, 0, $date[0], $date[1], $date[2] ) ) ) > date(‘md’)we solved the problem with replacing it with this line:
$age = ( date( ‘md’, date( ‘U’, mktime( 0, 0, 0, (int) $date[0], $date[1], $date[2] ) ) ) > date(‘md’)Could you please check it and make the corresponding changes in the plugin files? Thank you
The topic ‘Warning: mktime() expects parameter 4 to be int’ is closed to new replies.