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:
savvasha
2021-10-08 17:29:15 +03:00
parent e39ed63898
commit a1188b512e

View File

@@ -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;