Index: taxonomy_image.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_image/taxonomy_image.module,v retrieving revision 1.12.4.13.2.44 diff -u -p -r1.12.4.13.2.44 taxonomy_image.module --- taxonomy_image.module 16 Apr 2009 13:33:35 -0000 1.12.4.13.2.44 +++ taxonomy_image.module 18 Nov 2009 18:43:34 -0000 @@ -263,8 +263,9 @@ function taxonomy_image_get_object($tid, // Get more properties if we had an image. if (!empty($image[$tid]->path)) { $image[$tid]->tid = $tid; -// $img = getimagesize($image[$tid]->path); - $img = getimagesize($image[$tid]->url); + if (is_readable($fullpath . $image[$tid]->path) ) { + $img = getimagesize($fullpath . $image[$tid]->path); + } // Make sure it worked. if (!$img) { return NULL;