‘Implicit conversion from float to int’ error in youtube.php (PHP8.2)
-
Just a minor fix for the message “Deprecated: Implicit conversion from float (number) to int loses precision” under PHP8.2 in the YouTub.php file:
In /plugins/broken-link-checker/legacy/modules/extras/youtube.php
Within the function “check( $url )” (at approximately line 29),
Replace the line: usleep( ( $this->api_grace_period – $delta ) * 1000000 );
with the line
usleep( intval( $this->api_grace_period – $delta ) * 1000000 );
Cheers
…Steve
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.