Ticket #15236: 15236.patch
| File 15236.patch, 1.2 KB (added by , 15 years ago) |
|---|
-
wp-admin/plugins.php
230 230 foreach ( $plugin_info as $plugin ) { 231 231 if ( $plugin['is_uninstallable'] ) { 232 232 /* translators: 1: plugin name, 2: plugin author */ 233 echo '<li>', sprintf( __( '<strong>%1$s</strong> by <em>%2$s</em> (will also <strong>delete its data</strong>)' ), esc_html($plugin['Name']), esc_html( $plugin['Author']) ), '</li>';233 echo '<li>', sprintf( __( '<strong>%1$s</strong> by <em>%2$s</em> (will also <strong>delete its data</strong>)' ), esc_html($plugin['Name']), esc_html( strip_tags( $plugin['Author'] ) ) ), '</li>'; 234 234 $data_to_delete = true; 235 235 } else { 236 236 /* translators: 1: plugin name, 2: plugin author */ 237 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), esc_html($plugin['Name']), esc_html( $plugin['Author']) ), '</li>';237 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), esc_html($plugin['Name']), esc_html( strip_tags( $plugin['Author'] ) ) ), '</li>'; 238 238 } 239 239 } 240 240 ?>