- Timestamp:
- 09/05/2013 04:33:50 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r24583 r25254 100 100 if ( $s ) { 101 101 $status = 'search'; 102 $plugins['search'] = array_filter( $plugins['all'], array( &$this, '_search_callback' ) );102 $plugins['search'] = array_filter( $plugins['all'], array( $this, '_search_callback' ) ); 103 103 } 104 104 … … 122 122 $order = strtoupper( $order ); 123 123 124 uasort( $this->items, array( &$this, '_order_callback' ) );124 uasort( $this->items, array( $this, '_order_callback' ) ); 125 125 } 126 126
Note: See TracChangeset
for help on using the changeset viewer.