From 036469fce5882b0c02756da897373e256ea77a1a Mon Sep 17 00:00:00 2001 From: Thijs Stobbelaar Date: Thu, 16 Nov 2023 16:27:52 +0100 Subject: [PATCH] s --- index.php | 2 +- latestmatches.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 6a722ba..6ffa216 100644 --- a/index.php +++ b/index.php @@ -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 " diff --git a/latestmatches.php b/latestmatches.php index 0523e4b..f0e9f8a 100644 --- a/latestmatches.php +++ b/latestmatches.php @@ -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'];