FIX2: PHP 8.0: Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user