--- typo3/sysext/indexed_search/pi/class.tx_indexedsearch.php.orig 2006-09-06 23:57:14.000000000 +0200 +++ typo3/sysext/indexed_search/pi/class.tx_indexedsearch.php 2006-09-07 00:16:05.000000000 +0200 @@ -2067,8 +2067,8 @@ */ function makeInfo($row,$tmplArray) { $tmplArray['size'] = t3lib_div::formatSize($row['item_size']); - $tmplArray['created'] = date('d-m-y',$row['item_crdate']); - $tmplArray['modified'] = date('d-m-y H:i',$row['item_mtime']); + $tmplArray['created'] = $this->cObj->stdWrap($row['item_crdate'],$this->conf['created_stdWrap.']); + $tmplArray['modified'] = $this->cObj->stdWrap($row['item_mtime'],$this->conf['modified_stdWrap.']); $pathId = $row['data_page_id']?$row['data_page_id']:$row['page_id']; $pathMP = $row['data_page_id']?$row['data_page_mp']:''; --- typo3/sysext/indexed_search/ext_typoscript_setup.txt.orig 2006-09-06 23:57:14.000000000 +0200 +++ typo3/sysext/indexed_search/ext_typoscript_setup.txt 2006-09-07 00:17:46.000000000 +0200 @@ -37,6 +37,13 @@ } path_stdWrap { } + created_stdWrap { + strftime = %d-%m-%y + } + modified_stdWrap { + strftime = %d-%m-%y %H:%M + } + search { rootPidList = page_links = 10