Changeset 25666 for trunk/src/wp-includes/class-wp-theme.php
- Timestamp:
- 10/02/2013 08:49:59 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme.php
r24583 r25666 207 207 $this->headers['Name'] = $this->stylesheet; 208 208 if ( ! file_exists( $this->theme_root . '/' . $this->stylesheet ) ) 209 $this->errors = new WP_Error( 'theme_not_found', __( 'The theme directory does not exist.') );209 $this->errors = new WP_Error( 'theme_not_found', sprintf( __( 'The theme directory "%s" does not exist.' ), $this->stylesheet ) ); 210 210 else 211 211 $this->errors = new WP_Error( 'theme_no_stylesheet', __( 'Stylesheet is missing.' ) );
Note: See TracChangeset
for help on using the changeset viewer.