--- typo3_trunk/typo3/sysext/cms/tslib/class.tslib_content.php 2010-06-06 15:03:34.000000000 +0200 +++ typo3_trunk.new/typo3/sysext/cms/tslib/class.tslib_content.php 2010-06-06 15:28:43.000000000 +0200 @@ -4660,6 +4660,11 @@ if ($conf['size']) { $size = $this->stdWrap($theSize,$conf['size.']); } + + if ($conf['mtime']){ + $mtime = filemtime($theFile); + $mtime = $this->stdWrap($mtime, $conf['mtime.']); + } // Wrapping file label if ($conf['removePrependedNumbers']) $theValue=preg_replace('/_[0-9][0-9](\.[[:alnum:]]*)$/','\1',$theValue); @@ -4673,7 +4678,7 @@ } $file = $this->stdWrap($theValue,$conf['file.']); // output - return $this->stdWrap($icon.$file.$size, $conf['stdWrap.']); + return $this->stdWrap($icon.$file.$size.$mtime, $conf['stdWrap.']); } }