Index: class.tx_indexedsearch.php =================================================================== RCS file: /cvsroot/typo3/TYPO3core/typo3/sysext/indexed_search/pi/class.tx_indexedsearch.php,v retrieving revision 1.15 diff -u -r1.15 class.tx_indexedsearch.php --- class.tx_indexedsearch.php 16 Oct 2005 14:05:57 -0000 1.15 +++ class.tx_indexedsearch.php 6 Jan 2006 19:37:04 -0000 @@ -1915,9 +1923,9 @@ * @return array Modified template array */ function makeInfo($row,$tmplArray) { - $tmplArray['size'] = $this->pi_getLL('res_size','',1).' '.t3lib_div::formatSize($row['item_size']).''; - $tmplArray['created'] = $this->pi_getLL('res_created','',1).' '.date('d-m-y',$row['item_crdate']).''; - $tmplArray['modified'] = $this->pi_getLL('res_modified','',1).' '.date('d-m-y H:i',$row['item_mtime']).''; + $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']).''; $pathId = $row['data_page_id']?$row['data_page_id']:$row['page_id']; $pathMP = $row['data_page_id']?$row['data_page_mp']:'';