diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-12-30 12:19:13 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-12-30 12:19:13 +0100 |
commit | 8de7a22ceac0fab9eb984854758608d7aeb079d3 (patch) | |
tree | cfe04074cf104dc18498f44c700b0b98e17ea57d /phpfspot.class.php | |
parent | 04b321fe02707a4c545ce8e59659edac39ae4bb1 (diff) |
add a "already exist" when thumbnails are created on the command line. without it looked like an error occured
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index e2b24a8..841da50 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1269,6 +1269,8 @@ class PHPFSPOT { $this->_debug("Image [". $idx ."] ". $this->shrink_text($details['name'], 20) ." Thumbnails:"); + $changes = false; + foreach($resolutions as $resolution) { $thumb_sub_path = substr($file_md5, 0, 2); @@ -1284,6 +1286,8 @@ class PHPFSPOT { $this->_debug(" ". $resolution ."px"); if(!$this->create_thumbnail($full_path, $thumb_path, $resolution)) $error = 1; + + $changes = true; } /* if the file hasn't changed there is no need to regen the thumb */ elseif($file_md5 != $this->getMD5($idx) || $force) { @@ -1292,9 +1296,14 @@ class PHPFSPOT { if(!$this->create_thumbnail($full_path, $thumb_path, $resolution)) $error = 1; + $changes = true; } } + if(!$changes) { + $this->_debug(" already exist"); + } + /* set the new/changed MD5 sum for the current photo */ if(!$error) { $this->setMD5($idx, $file_md5); |