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:
parent
b7aadef64d
commit
fac1c328d8
|
@ -213,7 +213,7 @@ abstract class WP_Translation_File {
|
||||||
* are used, the entry key will have the format "ProductNULProducts".
|
* are used, the entry key will have the format "ProductNULProducts".
|
||||||
* Fall back to looking up just "Product" to support this edge case.
|
* 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" ) ) {
|
if ( str_starts_with( $key, $text . "\0" ) ) {
|
||||||
$parts = explode( "\0", $value );
|
$parts = explode( "\0", $value );
|
||||||
return $parts[0];
|
return $parts[0];
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue