From 1a1d852851ca34869927bffbc64e5713b8d9b426 Mon Sep 17 00:00:00 2001 From: "K. Adam White" Date: Mon, 23 Sep 2019 20:47:20 +0000 Subject: [PATCH] Coding Standards: Fix WPCS issue in [46274]. See #39953. git-svn-id: https://develop.svn.wordpress.org/trunk@46275 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/post.php b/src/wp-includes/post.php index 74a500525a..fce021ffba 100644 --- a/src/wp-includes/post.php +++ b/src/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)' ),