I18N: In `Translations::translate_entry()`, account for multi-line strings in files with Windows line endings.
Fixes #22172. Built from https://develop.svn.wordpress.org/trunk@35620 git-svn-id: http://core.svn.wordpress.org/trunk@35584 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1f15d30396
commit
c8e0cd5c65
|
@ -82,6 +82,7 @@ class Translations {
|
|||
*/
|
||||
function translate_entry(&$entry) {
|
||||
$key = $entry->key();
|
||||
$key = str_replace( "\r\n", "\n", $key );
|
||||
return isset($this->entries[$key])? $this->entries[$key] : false;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-beta3-35619';
|
||||
$wp_version = '4.4-beta3-35620';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue