diff --git a/src/wp-includes/class-wp-theme.php b/src/wp-includes/class-wp-theme.php
index d0607528b5..69d6912e6b 100644
a
|
b
|
final class WP_Theme implements ArrayAccess { |
280 | 280 | ) |
281 | 281 | ); |
282 | 282 | if ( ! file_exists( $this->theme_root ) ) { // Don't cache this one. |
283 | | $this->errors->add( 'theme_root_missing', __( 'Error: The themes directory is either empty or doesn’t exist. Please check your installation.' ) ); |
| 283 | $this->errors->add( 'theme_root_missing', __( '<strong>Error</strong>: The themes directory is either empty or doesn’t exist. Please check your installation.' ) ); |
284 | 284 | } |
285 | 285 | return; |
286 | 286 | } elseif ( ! is_readable( $this->theme_root . '/' . $theme_file ) ) { |
diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php
index 667049aa3f..db41490924 100644
a
|
b
|
function do_feed() { |
1579 | 1579 | } |
1580 | 1580 | |
1581 | 1581 | if ( ! has_action( "do_feed_{$feed}" ) ) { |
1582 | | wp_die( __( 'Error: This is not a valid feed template.' ), '', array( 'response' => 404 ) ); |
| 1582 | wp_die( __( '<strong>Error</strong>: This is not a valid feed template.' ), '', array( 'response' => 404 ) ); |
1583 | 1583 | } |
1584 | 1584 | |
1585 | 1585 | /** |