From a91fc400a0d8924f63a17846121a55854ccfb03c Mon Sep 17 00:00:00 2001 From: hellofromTonya Date: Thu, 26 Aug 2021 13:50:59 +0000 Subject: [PATCH] Coding Standards: Remove redundant ignore annotation in `populate_options()`. Follow-up to [43627], [43628]. Props jrf, hellofromTonya. See #53359. Built from https://develop.svn.wordpress.org/trunk@51660 git-svn-id: http://core.svn.wordpress.org/trunk@51266 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/schema.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index 8b1e56f3af..1bb2c27c45 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -390,7 +390,7 @@ function populate_options( array $options = array() ) { * or a valid timezone string (America/New_York). See https://www.php.net/manual/en/timezones.php * for all timezone strings supported by PHP. */ - $offset_or_tz = _x( '0', 'default GMT offset or timezone string' ); // phpcs:ignore WordPress.WP.I18n.NoEmptyStrings + $offset_or_tz = _x( '0', 'default GMT offset or timezone string' ); if ( is_numeric( $offset_or_tz ) ) { $gmt_offset = $offset_or_tz; } elseif ( $offset_or_tz && in_array( $offset_or_tz, timezone_identifiers_list(), true ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index f81fe77db3..4f953d9890 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51659'; +$wp_version = '5.9-alpha-51660'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.