Browse Source

Prevent unsupported files from being moved (#151)

Tobias Reich 10 years ago
parent
commit
02740d840a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      php/modules/Import.php

+ 2 - 2
php/modules/Import.php

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