X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=gen_thumbs.php;h=a2235bd8e2e10b921908041513aeab16508f8a37;hp=46c10d7f4642989c5a13f586c9d4d8565e4d82b3;hb=5bc350814a9426a89e8ab06728badad9430d4015;hpb=c54dcf670a6ea58d885eb143c0eac8d90d3020f7 diff --git a/gen_thumbs.php b/gen_thumbs.php index 46c10d7..a2235bd 100755 --- a/gen_thumbs.php +++ b/gen_thumbs.php @@ -1,9 +1,41 @@ #!/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(0, 'fromcmd'); +$fspot->fromcmd = true; + +$all = $fspot->getPhotoSelection(); + +foreach($all as $photo) { + $fspot->gen_thumb($photo); +} ?>