Prevent unsupported files from being moved (#151)

This commit is contained in:
Tobias Reich 2014-05-17 22:59:28 +02:00
parent 1cef3c29c4
commit 02740d840a

View File

@ -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 = '';