diff --git src/wp-includes/class-wp-recovery-mode-email-service.php src/wp-includes/class-wp-recovery-mode-email-service.php
index 365f2ea279..040585db27 100644
|
|
|
This link expires in ###EXPIRES###.
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /* translators: %s: plugin name */ |
| 238 | | $cause = sprintf( __( 'This was be caused by the %s plugin.' ), $name ); |
| | 238 | $cause = sprintf( __( 'This was caused by the %s plugin.' ), $name ); |
| 239 | 239 | } else { |
| 240 | 240 | $theme = wp_get_theme( $extension['slug'] ); |
| 241 | 241 | $name = $theme->exists() ? $theme->display( 'Name' ) : $extension['slug']; |
| 242 | 242 | |
| 243 | 243 | /* translators: %s: theme name */ |
| 244 | | $cause = sprintf( __( 'This was be caused by the %s theme.' ), $name ); |
| | 244 | $cause = sprintf( __( 'This was caused by the %s theme.' ), $name ); |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | return $cause; |