Check if given import-path is a dir
This commit is contained in:
parent
653511e6c6
commit
6c142f8570
@ -119,6 +119,11 @@ class Import extends Module {
|
||||
|
||||
if (!isset($path)) $path = LYCHEE_UPLOADS_IMPORT;
|
||||
|
||||
if (is_dir($path)===false) {
|
||||
Log::error($database, __METHOD__, __LINE__, 'Given path is not a directory (' . $path . ')');
|
||||
return 'Error: Given path is not a directory!';
|
||||
}
|
||||
|
||||
if ($useTemp===true) {
|
||||
$path = Import::move($database, $path);
|
||||
if ($path===false) {
|
||||
|
Loading…
Reference in New Issue
Block a user