diff --git a/src/wp-includes/l10n/class-wp-translation-file.php b/src/wp-includes/l10n/class-wp-translation-file.php index f920ab1388..8e7bfba1b1 100644 --- a/src/wp-includes/l10n/class-wp-translation-file.php +++ b/src/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];