diff --git a/ChangeLog b/ChangeLog index 9b53f54afde02b98c0f5f127bd6fbd0a922771e2..9bab9eb246f9f75a6d38db4795d1d688f9cedbd7 100755 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * Extended db_mountpoint and file_mountpoint fields into to 255 bytes size * Fixed bug #3069: Extension manager crashed because of some PHP bug with version_compare() (thanks to Rainer Haertlein who discovered the solution to this problem) + * Changed t3lib_basicFileFunctions to use filemtime() instead of filectime() 2007-02-04 Oliver Hader <oh@inpublica.de> diff --git a/t3lib/class.t3lib_basicfilefunc.php b/t3lib/class.t3lib_basicfilefunc.php index 3bb0286def8b21d46d3a1dd6609676cc70488c72..000f59febdbd6ac13cb1776bc481548bf16cfa1a 100644 --- a/t3lib/class.t3lib_basicfilefunc.php +++ b/t3lib/class.t3lib_basicfilefunc.php @@ -152,7 +152,7 @@ class t3lib_basicFileFunctions { function getTotalFileInfo($wholePath) { $theuser = getmyuid(); $info = t3lib_div::split_fileref($wholePath); - $info['tstamp'] = @filectime($wholePath); + $info['tstamp'] = @filemtime($wholePath); $info['size'] = @filesize($wholePath); $info['type'] = @filetype($wholePath); $info['owner'] = @fileowner($wholePath);