When you write to a symlink - you access the file itself, not the symlink, so we need to compare the atime to the orignal file

This commit is contained in:
Hannes Magnusson 2011-06-05 12:08:14 +00:00
parent c1a96c16d0
commit d4f6e7d937

View File

@ -47,7 +47,7 @@ clearstatcache();
var_dump( touch($link_name) );
$new_stat = lstat($link_name);
$new_stat = stat($file_name);
// compare self stats
var_dump( compare_self_stat($old_stat) );