- Timestamp:
- 01/12/2026 09:15:00 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r61444 r61474 303 303 $b = $theme_b[ $orderby ]; 304 304 305 if ( $a === $b ) { 306 return 0; 307 } 308 309 if ( 'DESC' === $order ) { 310 return ( $a < $b ) ? 1 : -1; 311 } else { 312 return ( $a < $b ) ? -1 : 1; 313 } 305 return 'DESC' === $order ? 306 $b <=> $a : 307 $a <=> $b; 314 308 } 315 309
Note: See TracChangeset
for help on using the changeset viewer.