If Reverse Teams option is enabled then the Main Results should be reversed also

This commit is contained in:
savvasha
2018-10-21 10:49:45 +03:00
parent b5353f2d96
commit b9ac82d180

View File

@@ -472,6 +472,10 @@ class SP_Event extends SP_Custom_Post{
}
}
if ( 'yes' === get_option( 'sportspress_event_reverse_teams', 'no' ) ) {
$output = array_reverse( $output, true );
}
return $output;
}