Prevent unsupported files from being moved (#151)
This commit is contained in:
parent
1cef3c29c4
commit
02740d840a
@ -82,8 +82,8 @@ class Import extends Module {
|
||||
|
||||
foreach ($files as $file) {
|
||||
|
||||
# Prevent index.html from being moved
|
||||
if (basename($file)==='index.html') continue;
|
||||
# Prevent unsupported files from being moved
|
||||
if (is_dir($file)===false&&@exif_imagetype($file)===false) continue;
|
||||
|
||||
$out = '';
|
||||
$ret = '';
|
||||
|
Loading…
Reference in New Issue
Block a user