Bug #16793
closedDate formatting should use Typo3 default settings and be configurable
0%
Description
Search results contain information about create and modify timestamp. Format is currently hardcoded. Format pattern should be configurable via TS (e.g. modify with or without H:i) and respect users language settings (e.g. german format is d.m.Y, english format can be m.d.Y).
Minimum requirement is that date format follows Typo3 default settings from /typo3conf/localconf.php:
$TYPO3_CONF_VARS['SYS']['ddmmyy'] = <format pattern>
Following code lines are affected (CSV 1795):
2070 $tmplArray['created'] = date('d-m-y',$row['item_crdate']);
2071 $tmplArray['modified'] = date('d-m-y H:i',$row['item_mtime']);
(issue imported from #M4666)
Updated by Michael Stucki almost 18 years ago
Thanks Andreas. I didn't look at your patch from there, but I already fixed it on my own. See RFC here: http://lists.netfielders.de/pipermail/typo3-team-core/2007-January/006815.html