Check if given import-path is a dir

This commit is contained in:
Tobias Reich 2014-07-23 21:45:18 +02:00
parent 653511e6c6
commit 6c142f8570

View File

@ -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) {