Administration: Fix typo in fatal error email notification.

Props kraftbj.
Fixes #46722.

git-svn-id: https://develop.svn.wordpress.org/trunk@45077 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-03-30 18:53:21 +00:00
parent 123b973889
commit 0fc5c3adaf

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;