Skip to content

Commit

Permalink
Update the WordPress version to 6.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-vlasenko authored and Anton Vlasenko committed Oct 25, 2023
1 parent 0e8df1a commit caef2fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wp-includes/class-wp-term.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public function to_array() {
* Getter.
*
* @since 4.4.0
* @since 6.4.0 The 'data' property was deprecated.
* @since 6.5.0 The 'data' property was deprecated.
*
* @param string $key Property to get.
* @return stdClass|null Property value.
Expand All @@ -235,7 +235,7 @@ public function __get( $key ) {
if ( 'data' === $key ) {
_deprecated_argument(
'WP_Term::$data',
'6.4.0',
'6.5.0',
sprintf(
/* translators: %s: The method name to be used instead of the WP_Term::$data property. */
__( 'Use %s instead.' ),
Expand All @@ -252,7 +252,7 @@ public function __get( $key ) {
/**
* Returns information about the term as it is stored in the database.
*
* @since 6.4.0
* @since 6.5.0
*
* @return stdClass
*/
Expand Down

0 comments on commit caef2fc

Please sign in to comment.