From 63d0abd5ff1931d9a96b86859c3c41e949fa9442 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 30 Mar 2019 18:54:51 +0000 Subject: [PATCH] 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 --- wp-includes/class-wp-recovery-mode-email-service.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-recovery-mode-email-service.php b/wp-includes/class-wp-recovery-mode-email-service.php index 365f2ea279..040585db27 100644 --- a/wp-includes/class-wp-recovery-mode-email-service.php +++ b/wp-includes/class-wp-recovery-mode-email-service.php @@ -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; diff --git a/wp-includes/version.php b/wp-includes/version.php index 8dfe1cb331..7c3158e538 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.