summaryrefslogtreecommitdiff
path: root/utils/imagecache.php
diff options
context:
space:
mode:
Diffstat (limited to 'utils/imagecache.php')
-rw-r--r--utils/imagecache.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/imagecache.php b/utils/imagecache.php
index 811ba0c..a4a7792 100644
--- a/utils/imagecache.php
+++ b/utils/imagecache.php
@@ -48,6 +48,7 @@ function getCachedImage($filename, $mod, $cat)
global $modules;
loadModule($mod);
if(!$modules[$mod]) die(404);
+ if(!method_exists($modules[$mod], "getImageSize")) die(404);
$size = $modules[$mod]->getImageSize($cat);
$maxwidth = $size->width;