Administration: Fix typo in fatal error email notification.

Props kraftbj.
Fixes #46722.
Built from https://develop.svn.wordpress.org/trunk@45077


git-svn-id: http://core.svn.wordpress.org/trunk@44886 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-03-30 18:54:51 +00:00
parent 61628dbd8b
commit 63d0abd5ff
2 changed files with 3 additions and 3 deletions

View File

@ -235,13 +235,13 @@ This link expires in ###EXPIRES###.
}
/* translators: %s: plugin name */
$cause = sprintf( __( 'This was be caused by the %s plugin.' ), $name );
$cause = sprintf( __( 'This was caused by the %s plugin.' ), $name );
} else {
$theme = wp_get_theme( $extension['slug'] );
$name = $theme->exists() ? $theme->display( 'Name' ) : $extension['slug'];
/* translators: %s: theme name */
$cause = sprintf( __( 'This was be caused by the %s theme.' ), $name );
$cause = sprintf( __( 'This was caused by the %s theme.' ), $name );
}
return $cause;

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.2-beta1-45076';
$wp_version = '5.2-beta1-45077';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.