Changeset 22376 for trunk/wp-admin/includes/class-wp-plugins-list-table.php
- Timestamp:
- 11/05/2012 06:29:20 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.