PHP Deprecated on PHP 8.1
-
UTC] PHP Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in wp-content/plugins/subscribe-to-comments-reloaded/templates/request-management-link.php on line 87
You define $post_permalink as null and pass it to strpos() function. I suggest defining the variable (line 12) as an empty string to avoid such misunderstandings:
$post_permalink = ”; // instead $post_permalink = null;And change code in line 242:
if ( isset( $post_permalink ) )
To:
if ( $post_permalink !== ” )
Thanks.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘PHP Deprecated on PHP 8.1’ is closed to new replies.