PHP 8.0 Warning Message
-
Hi there,
After updating to PHP 8.0, i get the warning message as follows:
PHP Deprecated: Required parameter $listtype follows optional parameter $limit in /home/deleted/public_html/wp-content/plugins/wp-airbnb-review-slider/admin/class-wp-airbnb-review-slider-admin.php on line 896Here is line 896:
private function getreviewurlfrommain($urlvalue, $listing_id, $limit=10, $offset=0, $listtype){A quick and easy fix:
private function getreviewurlfrommain($urlvalue, $listing_id, $listtype, $limit=10, $offset=0){That seems to work, so perhaps that could be included in future versions (assuming it is backwards compatible with older versions of PHP).
Thanks
The topic ‘PHP 8.0 Warning Message’ is closed to new replies.