From 3e97aa625e7462a34c2e79044aa55d7231dab7f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Gro=C3=9Fberndt?= Date: Fri, 3 Jul 2026 11:53:23 +0200 Subject: [PATCH] [BUGFIX] Display time for `crdate` of `tx_femanager_domain_model_log` in the backend When editing a `fe_users` record in the backend, the field `crdate` of Log entries only contained the date, no longer the time of creation, despite the label even being "Time" for "tx_femanager_domain_model_log.crdate" Commit 05a9adad `[TASK] fix tca migration notices, general tca cleanup` overlooked that, Commit 68641710 fixed it for `fe_users` already. --- Configuration/TCA/tx_femanager_domain_model_log.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuration/TCA/tx_femanager_domain_model_log.php b/Configuration/TCA/tx_femanager_domain_model_log.php index 2b60177cf..ff4906b1b 100644 --- a/Configuration/TCA/tx_femanager_domain_model_log.php +++ b/Configuration/TCA/tx_femanager_domain_model_log.php @@ -57,7 +57,7 @@ 'tx_femanager_domain_model_log.crdate', 'config' => [ 'type' => 'datetime', - 'format' => 'date', + 'format' => 'datetime', 'readOnly' => true, 'default' => time(), ],