This commit is contained in:
Lanta 2023-11-16 16:27:52 +01:00
parent 7583831f21
commit cfd643153f
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ $lastMatches = array_slice($allMatches, 0, 8);
foreach ($lastMatches as $match) {
$matchid = $match['id'];
$date = new DateTime($match['createdAt']);
$date->modify('+2 hours');
$date->modify('+1 hours');
$formattedDate = $date->format('m-d H:i:s');
echo "<tr>

View file

@ -67,7 +67,7 @@
}
$date = new DateTime($match['createdAt']);
$date->modify('+2 hours');
$date->modify('+1 hours');
$formattedDate = $date->format('m-d H:i:s');
$matchType = $match['matchType'];