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
This commit is contained in:
Pascal Birchler 2024-01-30 14:10:10 +00:00
parent b7aadef64d
commit fac1c328d8
2 changed files with 2 additions and 2 deletions

View File

@ -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];

View File

@ -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.