diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index c7c38a3561..03fe097538 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -187,8 +187,8 @@ class WP_List_Table { } trigger_error( - "The property `{$name}` is not defined. Getting a dynamic (undefined) property is " . - 'deprecated since version 6.4.0! Instead, define the property on the class.', + "The property `{$name}` is not declared. Getting a dynamic property is " . + 'deprecated since version 6.4.0! Instead, declare the property on the class.', E_USER_DEPRECATED ); return null; @@ -210,8 +210,8 @@ class WP_List_Table { } trigger_error( - "The property `{$name}` is not defined. Setting a dynamic (undefined) property is " . - 'deprecated since version 6.4.0! Instead, define the property on the class.', + "The property `{$name}` is not declared. Setting a dynamic property is " . + 'deprecated since version 6.4.0! Instead, declare the property on the class.', E_USER_DEPRECATED ); } @@ -231,8 +231,8 @@ class WP_List_Table { } trigger_error( - "The property `{$name}` is not defined. Checking `isset()` on a dynamic (undefined) property " . - 'is deprecated since version 6.4.0! Instead, define the property on the class.', + "The property `{$name}` is not declared. Checking `isset()` on a dynamic property " . + 'is deprecated since version 6.4.0! Instead, declare the property on the class.', E_USER_DEPRECATED ); return false; @@ -253,8 +253,8 @@ class WP_List_Table { } trigger_error( - "A property `{$name}` is not defined. Unsetting a dynamic (undefined) property is " . - 'deprecated since version 6.4.0! Instead, define the property on the class.', + "A property `{$name}` is not declared. Unsetting a dynamic property is " . + 'deprecated since version 6.4.0! Instead, declare the property on the class.', E_USER_DEPRECATED ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 1b8cedbaf0..ada65c247e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56355'; +$wp_version = '6.4-alpha-56356'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.