Changeset 34973 for trunk/src/wp-admin/plugins.php
- Timestamp:
- 10/08/2015 11:13:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugins.php
r34912 r34973 322 322 if ( $plugin['is_uninstallable'] ) { 323 323 /* translators: 1: plugin name, 2: plugin author */ 324 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['AuthorName'])), '</li>';324 echo '<li>', sprintf( __( '<strong>%1$s</strong> by <em>%2$s</em> (will also <strong>delete its data</strong>)' ), $plugin['Name'], $plugin['AuthorName'] ), '</li>'; 325 325 $data_to_delete = true; 326 326 } else { 327 327 /* translators: 1: plugin name, 2: plugin author */ 328 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), esc_html($plugin['Name']), esc_html($plugin['AuthorName'])), '</li>';328 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), $plugin['Name'], $plugin['AuthorName'] ), '</li>'; 329 329 } 330 330 }
Note: See TracChangeset
for help on using the changeset viewer.