Merge pull request #156 from djdallmann/v2.5

Added support for filenames with spaces by using escapeshellarg() to eva...
pull/159/head
Tobias Reich 11 years ago
commit 1cef3c29c4

@ -87,8 +87,11 @@ class Import extends Module {
$out = '';
$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);
}

Loading…
Cancel
Save