speedup lightbox2 resizing antimation
[phpfspot.git] / gen_thumbs.php
index f6742e08c074c0867e237cfe427cf264845dc088..05b7d0cd465313262898da341cb9b458054157aa 100755 (executable)
@@ -37,10 +37,12 @@ $overwrite = false;
 $short_options = "";
 $short_options.= "h"; /* help */
 $short_options.= "o"; /* overwrite */
+$short_options.= "c"; /* cleanup */
 
 $long_options = array(
    "help",
    "overwrite",
+   "cleanup",
 );
 
 /* command line option specified? */
@@ -66,6 +68,11 @@ if(isset($_SERVER['argc']) && $_SERVER['argc'] > 1) {
             print "Overwrite flag set!\n";
             $overwrite = true;
             break;
+         case 'c':
+         case '--cleanup':
+            $fspot->cleanup_phpfspot_db();
+            exit(0);
+            break;
          default:
             print "invalid option";
             exit(1);