Skip to content

Commit b07e6a2

Browse files
author
DOMjudge team
committed
Fix mismatched bracket
1 parent a24340f commit b07e6a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/src/Service/ExternalContestSourceService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ protected function validateAndUpdateContest(Event $event, EventData $data): void
752752
// We do use precise time with milliseconds if provided, but strip trailing .000 off to make it look nicer.
753753
$toCheck = [
754754
'start_time_enabled' => true,
755-
'start_time_string' => preg_replace('/\.000$/', '', $startTime->format('Y-m-d H:i:s.v')) . ' ' . $timezoneToUse),
755+
'start_time_string' => preg_replace('/\.000$/', '', $startTime->format('Y-m-d H:i:s.v')) . ' ' . $timezoneToUse,
756756
'end_time_string' => preg_replace('/\.000$/', '', $fullDuration),
757757
'freeze_time_string' => preg_replace('/\.000$/', '', $fullFreeze),
758758
];

0 commit comments

Comments
 (0)