X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=gen_thumbs.php;h=8ea9b17d4a2421ba5db2f04d94cf9c0057365a90;hp=1912a54b8f3a44deb02ee154e872090573f72f39;hb=15a6c1b6db19c2304d4c1c15dc6ed2a21a51cee2;hpb=e568703f27dd6c04c8744600b42b8ccf908e73db diff --git a/gen_thumbs.php b/gen_thumbs.php index 1912a54..8ea9b17 100755 --- a/gen_thumbs.php +++ b/gen_thumbs.php @@ -1,9 +1,20 @@ #!/usr/bin/php
This script should only be invoked from command line!
\n"; + die; +} + 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); +} ?>