From 57fcb7d8dda882ae548693d9ec33b3c1f5df838d Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Sat, 12 Jan 2019 03:49:49 +0000 Subject: [PATCH] Coding Standards: Fix an incorrect `phpcs:ignore` comment. It's `phpcs:ignore`, not `wpcs:ignore`. Props GaryJ. See #45934. Built from https://develop.svn.wordpress.org/trunk@44570 git-svn-id: http://core.svn.wordpress.org/trunk@44401 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 3881f0e033..b0609481a3 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -836,7 +836,7 @@ function wp_generate_tag_cloud( $tags, $args = '' ) { } elseif ( ! empty( $args['topic_count_text_callback'] ) ) { // Look for the alternative callback style. Ignore the previous default. if ( $args['topic_count_text_callback'] === 'default_topic_count_text' ) { - // wpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralPlural + // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralPlural $translate_nooped_plural = _n_noop( '%s item', '%s items' ); } else { $translate_nooped_plural = false; diff --git a/wp-includes/version.php b/wp-includes/version.php index 46af311ec4..b2ffc986d4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-beta1-44569'; +$wp_version = '5.1-beta1-44570'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.