Changeset 29666
- Timestamp:
- 09/02/2014 06:50:48 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r29637 r29666 180 180 181 181 if ( $this->orderby ) { 182 uasort( $this->items, array( $this, ' _order_callback' ) );182 uasort( $this->items, array( $this, 'order_callback' ) ); 183 183 } 184 184 … … 305 305 } 306 306 307 p ublic function _order_callback( $plugin_a, $plugin_b ) {307 private function order_callback( $plugin_a, $plugin_b ) { 308 308 $orderby = $this->orderby; 309 309 if ( ! isset( $plugin_a->$orderby, $plugin_b->$orderby ) ) {
Note: See TracChangeset
for help on using the changeset viewer.