Changeset 11361 for trunk/wp-admin/plugins.php
- Timestamp:
- 05/16/2009 07:09:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugins.php
r11314 r11361 99 99 include(ABSPATH . 'wp-admin/update.php'); 100 100 101 $title = __('Delete Plugin');102 101 $parent_file = 'plugins.php'; 103 102 … … 128 127 ?> 129 128 <p><?php _e('Deleting the selected plugins will remove the following plugin(s) and their files:'); ?></p> 130 <ul >129 <ul class="ul-disc"> 131 130 <?php 132 131 foreach ( $plugin_info as $plugin ) 133 echo '<li>', sprintf(__(' %s by %s'), $plugin['Name'], $plugin['Author']), '</li>';132 echo '<li>', sprintf(__('<strong>%s</strong> by <em>%s</em>'), $plugin['Name'], $plugin['Author']), '</li>'; 134 133 ?> 135 134 </ul> … … 151 150 <p><a href="#" onclick="jQuery('#files-list').toggle(); return false;"><?php _e('Click to view entire list of files which will be deleted'); ?></a></p> 152 151 <div id="files-list" style="display:none;"> 153 <ul >152 <ul class="code"> 154 153 <?php 155 154 foreach ( (array)$files_to_delete as $file )
Note: See TracChangeset
for help on using the changeset viewer.