PHP 8.3 issues, is the plugin abandoned?
-
I see this plugin hasn’t been updated in a year, and throws a bunch of errors in PHP 8.3.
PHP Deprecated: Creation of dynamic property quick_page_post_reds::$ppr_pro is deprecated in quick-pagepost-redirect-plugin/page_post_redirect_plugin.php on line 89
Deprecated: Creation of dynamic property quick_page_post_reds::$ppr_pro is deprecated in page_post_redirect_plugin.php on line 89
PHP Deprecated: Creation of dynamic property quick_page_post_reds::$ppr_metaurl is deprecated in /page_post_redirect_plugin.php on line 108
PHP Deprecated: Creation of dynamic property quick_page_post_reds::$pprshowcols is deprecated in page_post_redirect_plugin.php on line 110
… and so on.
You just need to define the vars before assigning values in __construct(), eg
class quick_page_post_reds {
public $ppr_pro;
public $ppr_metaurl;
public $pprshowcols;
- You must be logged in to reply to this topic.