diff options
Diffstat (limited to 'imagecache_auto.inc')
-rw-r--r-- | imagecache_auto.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/imagecache_auto.inc b/imagecache_auto.inc index ef751a7..78c5751 100644 --- a/imagecache_auto.inc +++ b/imagecache_auto.inc @@ -1,5 +1,4 @@ <?php - /** * @file * ImageCache functions. @@ -79,7 +78,7 @@ function imagecache_auto_delete_preset($options) { } else { $name = $options['width'] .'x'. $options['height']; - } + } // Check if preset exists. $preset = imagecache_preset_by_name($name); @@ -140,3 +139,4 @@ function imagecache_auto_count_presets() { $count = db_fetch_object($result); return $count->count; } + |