use ignore_once instead of ignore for requirement checks, or rpc.php will fail becaus...
[phpfspot.git] / gen_thumbs.php
index 46c10d7f4642989c5a13f586c9d4d8565e4d82b3..4e621dce94ff6f9e81adfb33519f5d937630f462 100755 (executable)
@@ -4,6 +4,12 @@
 require_once "phpfspot.class.php";
 
 $fspot = new PHPFSPOT;
-$fspot->gen_thumbs(0, 'fromcmd');
+$fspot->fromcmd = true;
+
+$all = $fspot->getPhotoSelection();
+
+foreach($all as $photo) {
+   $fspot->gen_thumb($photo);
+}
 
 ?>