diff options
author | Silvio <silvio@devlet.com.br> | 2011-11-21 14:06:06 -0200 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2011-11-21 14:06:06 -0200 |
commit | 4e6902f5c54d69c351d618a6d8c3273d3b35e3b5 (patch) | |
tree | 5be84393a696bb27d1fe21822a0286f4b836ce71 /imagecache_auto.inc | |
parent | 97adf947afbf8ad31c0c31bc3b3f77098d3e8f4e (diff) | |
download | imagecache_auto-4e6902f5c54d69c351d618a6d8c3273d3b35e3b5.tar.gz imagecache_auto-4e6902f5c54d69c351d618a6d8c3273d3b35e3b5.tar.bz2 |
More coding standards
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; } + |