Changeset 22376
- Timestamp:
- 11/05/2012 06:29:20 PM (12 years ago)
- Location:
- trunk/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-list-table.php
r21944 r22376 766 766 767 767 <div class="alignleft actions"> 768 <?php $this->bulk_actions( $which); ?>768 <?php $this->bulk_actions(); ?> 769 769 </div> 770 770 <?php -
trunk/wp-admin/includes/class-wp-plugins-list-table.php
r21996 r22376 253 253 } 254 254 255 function bulk_actions( $which) {255 function bulk_actions() { 256 256 global $status; 257 257 … … 259 259 return; 260 260 261 parent::bulk_actions( $which);261 parent::bulk_actions(); 262 262 } 263 263 … … 294 294 295 295 foreach ( $this->items as $plugin_file => $plugin_data ) 296 $this->single_row( $plugin_file, $plugin_data);297 } 298 299 function single_row( $ plugin_file, $plugin_data) {296 $this->single_row( array( $plugin_file, $plugin_data ) ); 297 } 298 299 function single_row( $item ) { 300 300 global $status, $page, $s, $totals; 301 301 302 list( $plugin_file, $plugin_data ) = $item; 302 303 $context = $status; 303 304 $screen = $this->screen;
Note: See TracChangeset
for help on using the changeset viewer.