Themes: Fix markup for theme name fallbacks.

Merge of [39807] to the 4.6 branch.
Built from https://develop.svn.wordpress.org/branches/4.6@39810


git-svn-id: http://core.svn.wordpress.org/branches/4.6@39748 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2017-01-11 11:09:35 +00:00
parent 116a5c2fa7
commit efc07abeb3
2 changed files with 4 additions and 3 deletions

View File

@ -720,8 +720,9 @@ final class WP_Theme implements ArrayAccess {
private function markup_header( $header, $value, $translate ) { private function markup_header( $header, $value, $translate ) {
switch ( $header ) { switch ( $header ) {
case 'Name' : case 'Name' :
if ( empty( $value ) ) if ( empty( $value ) ) {
$value = $this->get_stylesheet(); $value = esc_html( $this->get_stylesheet() );
}
break; break;
case 'Description' : case 'Description' :
$value = wptexturize( $value ); $value = wptexturize( $value );

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.6.2-alpha-39797'; $wp_version = '4.6.2-alpha-39810';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.