Reverse form array to display in chronological order

This commit is contained in:
Brian Miyaji
2017-01-12 22:40:59 +11:00
parent 6bff4c405d
commit 737f2e075e

View File

@@ -455,6 +455,9 @@ class SP_League_Table extends SP_Custom_Post{
// Initialize team form array // Initialize team form array
$team_form = array(); $team_form = array();
// Reverse form array to display in chronological order
$form = array_reverse( $form );
// Loop through event form // Loop through event form
foreach ( $form as $form_event ): foreach ( $form as $form_event ):