Changeset 11380 for trunk/wp-admin/upload.php
- Timestamp:
- 05/18/2009 03:11:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upload.php
r11312 r11380 165 165 <div class="wrap"> 166 166 <?php screen_icon(); ?> 167 <h2><?php echo wp_specialchars( $title );167 <h2><?php echo esc_html( $title ); 168 168 if ( isset($_GET['s']) && $_GET['s'] ) 169 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', wp_specialchars( get_search_query() ) ); ?>169 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( get_search_query() ) ); ?> 170 170 </h2> 171 171 … … 323 323 foreach ( $orphans as $post ) { 324 324 $class = 'alternate' == $class ? '' : 'alternate'; 325 $att_title = wp_specialchars( _draft_or_post_title($post->ID) );325 $att_title = esc_html( _draft_or_post_title($post->ID) ); 326 326 ?> 327 327 <tr id='post-<?php echo $post->ID; ?>' class='<?php echo $class; ?>' valign="top">
Note: See TracChangeset
for help on using the changeset viewer.