- Timestamp:
- 01/12/2026 09:15:00 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r61456 r61474 459 459 $b = $plugin_b->$orderby; 460 460 461 if ( $a === $b ) { 462 return 0; 463 } 464 465 if ( 'DESC' === $this->order ) { 466 return ( $a < $b ) ? 1 : -1; 467 } else { 468 return ( $a < $b ) ? -1 : 1; 469 } 461 return 'DESC' === $this->order ? 462 $b <=> $a : 463 $a <=> $b; 470 464 } 471 465
Note: See TracChangeset
for help on using the changeset viewer.