diff --git src/wp-admin/includes/class-wp-plugins-list-table.php src/wp-admin/includes/class-wp-plugins-list-table.php
index 51a216a..e61bc03 100644
|
|
|
class WP_Plugins_List_Table extends WP_List_Table {
|
| 257 | 257 | if ( $a == $b ) |
| 258 | 258 | return 0; |
| 259 | 259 | |
| 260 | | if ( 'DESC' == $order ) |
| 261 | | return ( $a < $b ) ? 1 : -1; |
| 262 | | else |
| 263 | | return ( $a < $b ) ? -1 : 1; |
| | 260 | if ( 'DESC' == $order ) { |
| | 261 | return strcasecmp( $b, $a ); |
| | 262 | } else { |
| | 263 | return strcasecmp( $a, $b ); |
| | 264 | } |
| 264 | 265 | } |
| 265 | 266 | |
| 266 | 267 | /** |
| … |
… |
class WP_Plugins_List_Table extends WP_List_Table {
|
| 438 | 439 | * @global int $page |
| 439 | 440 | * @global string $s |
| 440 | 441 | * @global array $totals |
| 441 | | * |
| | 442 | * |
| 442 | 443 | * @param array $item |
| 443 | 444 | */ |
| 444 | 445 | public function single_row( $item ) { |