Changeset 11380 for trunk/wp-admin/widgets.php
- Timestamp:
- 05/18/2009 03:11:07 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/widgets.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/widgets.php
r11204 r11380 126 126 <div class="wrap"> 127 127 <?php screen_icon(); ?> 128 <h2><?php echo wp_specialchars( $title ); ?></h2>128 <h2><?php echo esc_html( $title ); ?></h2> 129 129 <div class="error"> 130 130 <p><?php _e( 'No Sidebars Defined' ); ?></p> … … 259 259 <div class="wrap"> 260 260 <?php screen_icon(); ?> 261 <h2><?php echo wp_specialchars( $title ); ?></h2>261 <h2><?php echo esc_html( $title ); ?></h2> 262 262 <div class="editwidget"<?php echo $width; ?>> 263 <h3><?php printf( __( 'Widget %s' ), wp_specialchars( strip_tags($control['name']) ) ); ?></h3>263 <h3><?php printf( __( 'Widget %s' ), esc_html( strip_tags($control['name']) ) ); ?></h3> 264 264 265 265 <form action="widgets.php" method="post"> … … 335 335 <div class="wrap"> 336 336 <?php screen_icon(); ?> 337 <h2><?php echo wp_specialchars( $title ); ?></h2>337 <h2><?php echo esc_html( $title ); ?></h2> 338 338 339 339 <?php if ( isset($_GET['message']) && isset($messages[$_GET['message']]) ) { ?> … … 379 379 <div class="sidebar-name"> 380 380 <div class="sidebar-name-arrow"><br /></div> 381 <h3><?php echo wp_specialchars( $registered_sidebar['name'] ); ?>381 <h3><?php echo esc_html( $registered_sidebar['name'] ); ?> 382 382 <span><img src="images/wpspin_dark.gif" class="ajax-feedback" title="" alt="" /></span></h3></div> 383 383 <?php wp_list_widget_controls( $sidebar ); // Show the control forms for each of the widgets in this sidebar ?>
Note: See TracChangeset
for help on using the changeset viewer.