avoid error messages if $_SESSION['selected_tags'] is set with an empty value in...
[phpfspot.git] / gen_thumbs.php
index 1912a54b8f3a44deb02ee154e872090573f72f39..4e621dce94ff6f9e81adfb33519f5d937630f462 100755 (executable)
@@ -4,6 +4,12 @@
 require_once "phpfspot.class.php";
 
 $fspot = new PHPFSPOT;
-$fspot->gen_thumbs('fromcmd');
+$fspot->fromcmd = true;
+
+$all = $fspot->getPhotoSelection();
+
+foreach($all as $photo) {
+   $fspot->gen_thumb($photo);
+}
 
 ?>