From c3dff8bcbdc9baae21caeab3331e1ea27fb5be22 Mon Sep 17 00:00:00 2001 From: Marvin Flock Date: Sun, 17 May 2026 15:57:46 +0200 Subject: [PATCH] fix: change IN_PROGRESS to RUNNING --- src/structure/components/com_sportsmanager/util/export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structure/components/com_sportsmanager/util/export.php b/src/structure/components/com_sportsmanager/util/export.php index 6535d89..2603987 100644 --- a/src/structure/components/com_sportsmanager/util/export.php +++ b/src/structure/components/com_sportsmanager/util/export.php @@ -295,7 +295,7 @@ final class SMExporter $today = new DateTimeImmutable('today'); $cutoff = new DateTimeImmutable($cutoffDate); - return ($cutoff < $today) ? 'FINISHED' : 'IN_PROGRESS'; + return ($cutoff < $today) ? 'FINISHED' : 'RUNNING'; } /**