Make sure "UPDATE LOG" in debug emails matches the underlining when translated.

fixes #26621.
Built from https://develop.svn.wordpress.org/trunk@26883


git-svn-id: http://core.svn.wordpress.org/trunk@26766 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov
2013-12-31 10:27:10 +00:00
parent cf5aa6d6da
commit a25d9ae3ba

View File

@@ -2395,8 +2395,9 @@ Thanks! -- The WordPress Team" );
$subject = sprintf( __( '[%s] Background updates have finished' ), $site_title );
}
$body[] = __( 'UPDATE LOG' );
$body[] = '==========';
$title = __( 'UPDATE LOG' );
$body[] = $title;
$body[] = str_repeat( '=', strlen( $title ) );
$body[] = '';
foreach ( array( 'core', 'plugin', 'theme', 'translation' ) as $type ) {