From 2b29c6cbe48e33b30302bf7a4c2c5f06a7b06504 Mon Sep 17 00:00:00 2001 From: int2001 Date: Fri, 28 Jul 2023 13:13:21 +0000 Subject: [PATCH] Shortened Date / see https://github.com/magicbug/Cloudlog/discussions/2164#discussioncomment-6575981 --- application/controllers/Labels.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index 6cbbeeda5..ec83929d1 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -210,9 +210,9 @@ class Labels extends CI_Controller { foreach ($preliminaryData as $key => $row) { $qso=$row; $time = strtotime($qso['time']); - $myFormatForView = date("Y-m-d H:i", $time); + $myFormatForView = date("d.m.y H:i", $time); $rowData = [ - 'Date/Time (UTC)' => $myFormatForView, + 'Date/Time' => $myFormatForView, 'Band' => $row['band'], 'Mode' => $row['mode'], 'RST' => $row['rst'],