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:
parent
61628dbd8b
commit
63d0abd5ff
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue