time modify #126

Merged
OpzekerIT merged 5 commits from dev into main 2023-11-16 15:29:51 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 036469fce5 - Show all commits

View file

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

View file

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