Changeset 11380 for trunk/wp-admin/plugins.php
- Timestamp:
- 05/18/2009 03:11:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugins.php
r11371 r11380 190 190 if ( !empty($invalid) ) 191 191 foreach ( $invalid as $plugin_file => $error ) 192 echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), wp_specialchars($plugin_file), $error->get_error_message()) . '</p></div>';192 echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), esc_html($plugin_file), $error->get_error_message()) . '</p></div>'; 193 193 ?> 194 194 … … 223 223 <div class="wrap"> 224 224 <?php screen_icon(); ?> 225 <h2><?php echo wp_specialchars( $title ); ?></h2>225 <h2><?php echo esc_html( $title ); ?></h2> 226 226 227 227 <?php
Note: See TracChangeset
for help on using the changeset viewer.