Changeset 53118
- Timestamp:
- 04/10/2022 07:45:40 PM (2 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme.php
r52978 r53118 283 283 ); 284 284 if ( ! file_exists( $this->theme_root ) ) { // Don't cache this one. 285 $this->errors->add( 'theme_root_missing', __( ' Error: The themes directory is either empty or does not exist. Please check your installation.' ) );285 $this->errors->add( 'theme_root_missing', __( '<strong>Error</strong>: The themes directory is either empty or does not exist. Please check your installation.' ) ); 286 286 } 287 287 return; -
trunk/src/wp-includes/functions.php
r53060 r53118 1601 1601 1602 1602 if ( ! has_action( "do_feed_{$feed}" ) ) { 1603 wp_die( __( ' Error: This is not a valid feed template.' ), '', array( 'response' => 404 ) );1603 wp_die( __( '<strong>Error</strong>: This is not a valid feed template.' ), '', array( 'response' => 404 ) ); 1604 1604 } 1605 1605
Note: See TracChangeset
for help on using the changeset viewer.