From a86fe08b1d7f4cbe94b2fc3d4556630dd817d7b0 Mon Sep 17 00:00:00 2001 From: "K. Adam White" Date: Mon, 23 Sep 2019 20:48:57 +0000 Subject: [PATCH] Coding Standards: Fix WPCS issue in [46274]. See #39953. Built from https://develop.svn.wordpress.org/trunk@46275 git-svn-id: http://core.svn.wordpress.org/trunk@46087 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 74a500525a..fce021ffba 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -352,11 +352,11 @@ function create_initial_post_types() { register_post_status( 'pending', array( - 'label' => _x( 'Pending', 'post status' ), - 'protected' => true, - '_builtin' => true, /* internal use only. */ + 'label' => _x( 'Pending', 'post status' ), + 'protected' => true, + '_builtin' => true, /* internal use only. */ /* translators: %s: Number of pending posts. */ - 'label_count' => _n_noop( + 'label_count' => _n_noop( 'Pending (%s)', 'Pending (%s)' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 4cf34d6351..036d4a0c4a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46274'; +$wp_version = '5.3-alpha-46275'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.