diff --git a/includes/class-sp-player-list.php b/includes/class-sp-player-list.php index 319f1cc1..33887a5e 100644 --- a/includes/class-sp-player-list.php +++ b/includes/class-sp-player-list.php @@ -942,7 +942,7 @@ class SP_Player_List extends SP_Secondary_Post { // Flip value if descending order if ( $priority['order'] == 'DESC' ) $output = 0 - $output; - return ( $output > 0 ); + return ( $output > 0 ? 1 : -1 ); endif;