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

fixes #26621.

git-svn-id: https://develop.svn.wordpress.org/trunk@26883 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-12-31 10:26:37 +00:00
parent 83509b3969
commit 9dae1af97c

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 ) {