PHP 8.2 Deprecation Warning
-
This plugin is rising a deprecation warning with PHP 8.2:
Deprecated: Creation of dynamic property Wplmi\Pages\Dashboard::$subpages is deprecated in /var/www/html/wp-content/plugins/wp-last-modified-info/inc/Pages/Dashboard.php on line 77
Plugin version: 1.8.8
My fix:
diff --git a/wp-content/plugins/wp-last-modified-info/inc/Pages/Dashboard.php b/wp-content/plugins/wp-last-modified-info/inc/Pages/Dashboard.php index b9d8fca2..a9a9d9b3 100644 --- a/wp-content/plugins/wp-last-modified-info/inc/Pages/Dashboard.php +++ b/wp-content/plugins/wp-last-modified-info/inc/Pages/Dashboard.php @@ -53,6 +53,13 @@ class Dashboard */ public $pages = []; + /** + * Settings sub-pages. + * + * @var array + */ + public $subpages = []; + /** * Register functions. */ @@ -228,4 +235,4 @@ class Dashboard return $this->do_filter( 'validate_input', $output, $input ); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘PHP 8.2 Deprecation Warning’ is closed to new replies.