From 2ac1c81178ea14fb6e9560f349be5c3c069352ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Gro=C3=9Fberndt?= Date: Thu, 5 Mar 2026 11:06:12 +0100 Subject: [PATCH] [BUGFIX] Display time for `crdate` and `tstamp` of `fe_users` in the backend When editing a `fe_users` record in the backend, the fields `crdate` and `tstamp` only contained the date, no longer the time of creation/last edit. Commit 05a9adad `[TASK] fix tca migration notices, general tca cleanup` overlooked that `date_of_birth` requires `date`, but `crdate` and `tstamp` require `datetime`. --- Configuration/TCA/Overrides/fe_users.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Configuration/TCA/Overrides/fe_users.php b/Configuration/TCA/Overrides/fe_users.php index e4ffefdc8..5457855e3 100644 --- a/Configuration/TCA/Overrides/fe_users.php +++ b/Configuration/TCA/Overrides/fe_users.php @@ -47,7 +47,7 @@ 'fe_users.crdate', 'config' => [ 'type' => 'datetime', - 'format' => 'date', + 'format' => 'datetime', 'readOnly' => true, 'default' => time(), ], @@ -58,7 +58,7 @@ 'fe_users.tstamp', 'config' => [ 'type' => 'datetime', - 'format' => 'date', + 'format' => 'datetime', 'readOnly' => true, 'default' => time(), ],