diff options
Diffstat (limited to 'imagecache_auto.module')
-rw-r--r-- | imagecache_auto.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imagecache_auto.module b/imagecache_auto.module index 64d6fc5..b25028a 100644 --- a/imagecache_auto.module +++ b/imagecache_auto.module @@ -51,7 +51,7 @@ function imagecache_auto() { if ($options['width'] == NULL || $options['width'] < 0 || $options['width'] > $max_width) { drupal_not_found(); } - else if ($options['height'] == NULL || $options['height'] < 0 || $options['height'] > $max_height) { + elseif ($options['height'] == NULL || $options['height'] < 0 || $options['height'] > $max_height) { drupal_not_found(); } |