From 85db3b50905b26e305567b19ec676c9b382c73cb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 2 Nov 2019 20:13:02 +0000 Subject: [PATCH] Docs: Correct `@see` references for PHP 4 constructors in `wp-includes/class-json.php`. See #48252, #48303. Built from https://develop.svn.wordpress.org/trunk@46630 git-svn-id: http://core.svn.wordpress.org/trunk@46430 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-json.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/class-json.php b/wp-includes/class-json.php index 30254cd664..7df464c374 100644 --- a/wp-includes/class-json.php +++ b/wp-includes/class-json.php @@ -159,7 +159,7 @@ class Services_JSON * * @deprecated 5.3.0 Use __construct() instead. * - * @see __construct() + * @see Services_JSON::__construct() */ public function Services_JSON( $use = 0 ) { _deprecated_constructor( 'Services_JSON', '5.3.0', get_class( $this ) ); @@ -991,7 +991,7 @@ if (class_exists('PEAR_Error')) { * * @deprecated 5.3.0 Use __construct() instead. * - * @see __construct() + * @see Services_JSON_Error::__construct() */ public function Services_JSON_Error($message = 'unknown error', $code = null, $mode = null, $options = null, $userinfo = null) { @@ -1023,7 +1023,7 @@ if (class_exists('PEAR_Error')) { * * @deprecated 5.3.0 Use __construct() instead. * - * @see __construct() + * @see Services_JSON_Error::__construct() */ public function Services_JSON_Error( $message = 'unknown error', $code = null, $mode = null, $options = null, $userinfo = null ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 5b59da9b76..2ec6699acb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-46629'; +$wp_version = '5.4-alpha-46630'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.