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'];