Merge pull request #156 from djdallmann/v2.5
Added support for filenames with spaces by using escapeshellarg() to eva...
This commit is contained in:
commit
1cef3c29c4
@ -87,8 +87,11 @@ class Import extends Module {
|
|||||||
|
|
||||||
$out = '';
|
$out = '';
|
||||||
$ret = '';
|
$ret = '';
|
||||||
|
$file = escapeshellarg($file);
|
||||||
|
$cmd = $osmv . " $file " . LYCHEE_DATA . $tmpdirname;
|
||||||
|
|
||||||
|
@exec($cmd, $out, $ret);
|
||||||
|
|
||||||
@exec($osmv . ' ' . $file . ' ' . LYCHEE_DATA . $tmpdirname, $out, $ret);
|
|
||||||
if (isset($ret)&&($ret>0)) Log::error($database, __METHOD__, __LINE__, "Failed to move directory or file ($ret):" . $file);
|
if (isset($ret)&&($ret>0)) Log::error($database, __METHOD__, __LINE__, "Failed to move directory or file ($ret):" . $file);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user