Changeset 12086 for trunk/wp-admin/update-core.php
- Timestamp:
- 10/22/2009 04:10:28 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/update-core.php
r12066 r12086 130 130 131 131 list_plugin_updates(); 132 list_theme_updates();132 //list_theme_updates(); 133 133 } 134 134 … … 137 137 if ( empty($plugins) ) 138 138 return; 139 ?> 139 $form_action = ''; 140 ?> 140 141 <h3><?php _e('Plugins'); ?></h3> 142 <form method="post" action="<?php $form_action; ?>" name="upgrade-plugins" class="upgrade"> 143 <?php wp_nonce_field('upgrade-core'); ?> 144 <p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Upgrade Plugins'); ?>" name="upgrade" /></p> 141 145 <table class="widefat" cellspacing="0" id="update-plugins-table"> 142 146 <thead> 143 147 <tr> 144 148 <th scope="col" class="manage-column check-column"><input type="checkbox" /></th> 145 <th scope="col" class="manage-column"><?php _e(' Name'); ?></th>149 <th scope="col" class="manage-column"><?php _e('Select All'); ?></th> 146 150 </tr> 147 151 </thead> … … 150 154 <tr> 151 155 <th scope="col" class="manage-column check-column"><input type="checkbox" /></th> 152 <th scope="col" class="manage-column"><?php _e(' Name'); ?></th>156 <th scope="col" class="manage-column"><?php _e('Select All'); ?></th> 153 157 </tr> 154 158 </tfoot> … … 165 169 </tbody> 166 170 </table> 171 <p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Upgrade Plugins'); ?>" name="upgrade" /></p> 172 </form> 167 173 <?php 168 174 }
Note: See TracChangeset
for help on using the changeset viewer.