From 6531270e480bd39cb1b364d8d1a3cd8a4fe3fc17 Mon Sep 17 00:00:00 2001 From: horus Date: Mon, 3 Jan 2022 14:53:41 +0100 Subject: Fixed wrong order when changing seasons. --- app/helpers.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app') diff --git a/app/helpers.php b/app/helpers.php index 7214626..e83d534 100644 --- a/app/helpers.php +++ b/app/helpers.php @@ -188,6 +188,7 @@ function getChangeSeasonOptions() { season_name != "" AND season_year IS NOT NULL - ORDER BY season_year DESC, FIELD(season_name, ' . getFieldSeasonName() . ') ASC' + ORDER BY season_year DESC, FIELD(season_name, "Winter", "Spring", "Summer", "Fall") DESC' ); + #ORDER BY season_year DESC, FIELD(season_name, ' . getFieldSeasonName() . ') ASC' } -- cgit v1.2.3