From 212eba75c2a92de4b076c7a342cae6395f17aea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gunter=20K=C3=B6nigsmann?= Date: Tue, 6 May 2014 06:37:29 +0200 Subject: [PATCH 1/2] The date field seems to incorporate the time in newer typo3 versions. --- Configuration/TCA/Podcast.php | 2 +- ext_emconf.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Configuration/TCA/Podcast.php b/Configuration/TCA/Podcast.php index 719aa12..801159b 100644 --- a/Configuration/TCA/Podcast.php +++ b/Configuration/TCA/Podcast.php @@ -107,7 +107,7 @@ 'config' => array( 'type' => 'input', 'size' => 12, - 'max' => 10, + 'max' => 15, 'eval' => 'datetime,required', 'checkbox' => '0', 'default' => time(), diff --git a/ext_emconf.php b/ext_emconf.php index 508ebe6..1aab602 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -32,7 +32,7 @@ array ( 'depends' => array ( - 'typo3' => '4.5-6.0.3', + 'typo3' => '4.5-6.2.1', 'extbase' => '1.3', 'fluid' => '1.3', ), From 8001002a0606ab0845b74c139818f4b5736b28b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gunter=20K=C3=B6nigsmann?= Date: Tue, 6 May 2014 06:38:25 +0200 Subject: [PATCH 2/2] Allow for AM and PM times.. --- Configuration/TCA/Podcast.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuration/TCA/Podcast.php b/Configuration/TCA/Podcast.php index 801159b..6be9b15 100644 --- a/Configuration/TCA/Podcast.php +++ b/Configuration/TCA/Podcast.php @@ -107,7 +107,7 @@ 'config' => array( 'type' => 'input', 'size' => 12, - 'max' => 15, + 'max' => 17, 'eval' => 'datetime,required', 'checkbox' => '0', 'default' => time(),