Remove leading newlines from two translatable strings.

fixes #29480.
Built from https://develop.svn.wordpress.org/trunk@31844


git-svn-id: http://core.svn.wordpress.org/trunk@31826 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-03-20 02:42:26 +00:00
parent e8c164c118
commit 42b9557137
1 changed files with 4 additions and 4 deletions

View File

@ -3165,8 +3165,8 @@ class WP_Automatic_Updater {
$site_title = wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ); $site_title = wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES );
if ( $failures ) { if ( $failures ) {
$body[] = trim( __( " $body[] = trim( __(
BETA TESTING? "BETA TESTING?
============= =============
This debugging email is sent when you are using a development version of WordPress. This debugging email is sent when you are using a development version of WordPress.
@ -3183,8 +3183,8 @@ Thanks! -- The WordPress Team" ) );
$subject = sprintf( __( '[%s] Background updates have finished' ), $site_title ); $subject = sprintf( __( '[%s] Background updates have finished' ), $site_title );
} }
$body[] = trim( __( ' $body[] = trim( __(
UPDATE LOG 'UPDATE LOG
==========' ) ); ==========' ) );
$body[] = ''; $body[] = '';