mirror of
https://github.com/Studio-42/elFinder
synced 2026-06-08 12:37:09 +00:00
[VD:LocalFileSystem] fix warning error in localFileSystemInotify()
This commit is contained in:
@@ -212,9 +212,8 @@ class elFinderVolumeLocalFileSystem extends elFinderVolumeDriver {
|
||||
return $mtime;
|
||||
}
|
||||
$inotifywait = defined('ELFINER_INOTIFYWAIT_PATH')? ELFINER_INOTIFYWAIT_PATH : 'inotifywait';
|
||||
$path = escapeshellarg($path);
|
||||
$standby = max(1, intval($standby));
|
||||
$cmd = $inotifywait.' '.$path.' -t '.$standby.' -e moved_to,moved_from,move,close_write,delete,delete_self';
|
||||
$cmd = $inotifywait.' '.escapeshellarg($path).' -t '.$standby.' -e moved_to,moved_from,move,close_write,delete,delete_self';
|
||||
$this->procExec($cmd , $o, $r);
|
||||
if ($r === 0) {
|
||||
// changed
|
||||
|
||||
Reference in New Issue
Block a user