[VD:LocalFileSystem] fix warning error

This commit is contained in:
nao-pon
2016-01-28 00:50:16 +09:00
parent ccae5126eb
commit 7cb378ae61
+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;