Changeset 13106 for trunk/wp-admin/includes/ms.php
- Timestamp:
- 02/13/2010 10:35:10 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/ms.php
r12965 r13106 213 213 if ( is_array( $blog_allowed_themes ) ) { 214 214 foreach( (array) $themes as $key => $theme ) { 215 $theme_key = wp_specialchars( $theme[ 'Stylesheet' ] );215 $theme_key = esc_html( $theme[ 'Stylesheet' ] ); 216 216 if ( isset( $blog_allowed_themes[ $key ] ) == true ) { 217 217 $blog_allowedthemes[ $theme_key ] = 1; … … 336 336 } else { 337 337 foreach( (array) $themes as $key => $theme ) { 338 $theme_key = wp_specialchars( $theme[ 'Stylesheet' ] );338 $theme_key = esc_html( $theme[ 'Stylesheet' ] ); 339 339 if ( isset( $allowed_themes[ $key ] ) == true ) { 340 340 $allowedthemes[ $theme_key ] = 1;
Note: See TracChangeset
for help on using the changeset viewer.