src build elFinder-2.1-9b735b1

This commit is contained in:
nao-pon
2016-01-28 01:01:12 +09:00
parent d648542fac
commit bcd55bca7c
7 changed files with 188 additions and 146 deletions
+2 -1
View File
@@ -214,7 +214,8 @@ class elFinderVolumeLocalFileSystem extends elFinderVolumeDriver {
if ($r === 0) {
// changed
clearstatcache();
return filemtime($path);
$mtime = @filemtime($path); // error on busy?
return $mtime? $mtime : time();
} else if ($r === 2) {
// not changed (timeout)
return $compare;