From fac1c328d81cf700bb701fe9877c6c629a727119 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Tue, 30 Jan 2024 14:10:10 +0000 Subject: [PATCH] I18N: Add missing space after `foreach` keyword. Follow-up to [57386]. See #59656. Built from https://develop.svn.wordpress.org/trunk@57387 git-svn-id: http://core.svn.wordpress.org/trunk@56893 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/l10n/class-wp-translation-file.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/l10n/class-wp-translation-file.php b/wp-includes/l10n/class-wp-translation-file.php index f920ab1388..8e7bfba1b1 100644 --- a/wp-includes/l10n/class-wp-translation-file.php +++ b/wp-includes/l10n/class-wp-translation-file.php @@ -213,7 +213,7 @@ abstract class WP_Translation_File { * are used, the entry key will have the format "ProductNULProducts". * Fall back to looking up just "Product" to support this edge case. */ - foreach( $this->entries as $key => $value ) { + foreach ( $this->entries as $key => $value ) { if ( str_starts_with( $key, $text . "\0" ) ) { $parts = explode( "\0", $value ); return $parts[0]; diff --git a/wp-includes/version.php b/wp-includes/version.php index 21e4a2365e..354e16e629 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57386'; +$wp_version = '6.5-alpha-57387'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.