X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=gen_thumbs.php;h=a2235bd8e2e10b921908041513aeab16508f8a37;hp=1912a54b8f3a44deb02ee154e872090573f72f39;hb=350ffa92282e6b5adf3dc2b854fbb2255c845b8e;hpb=e568703f27dd6c04c8744600b42b8ccf908e73db diff --git a/gen_thumbs.php b/gen_thumbs.php index 1912a54..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('fromcmd'); +$fspot->fromcmd = true; + +$all = $fspot->getPhotoSelection(); + +foreach($all as $photo) { + $fspot->gen_thumb($photo); +} ?>