Index: taxonomy_image.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_image/taxonomy_image.module,v retrieving revision 1.12.4.13.2.47 diff -u -p -r1.12.4.13.2.47 taxonomy_image.module --- taxonomy_image.module 20 Apr 2009 21:08:25 -0000 1.12.4.13.2.47 +++ taxonomy_image.module 5 Nov 2009 22:35:24 -0000 @@ -265,8 +265,10 @@ function taxonomy_image_get_object($tid, if (!empty($image[$tid]->path)) { $image[$tid]->tid = $tid; $image[$tid]->vid = $term->vid; - $img = getimagesize($fullpath . $image[$tid]->path); -// $img = getimagesize($image[$tid]->url); + if ( file_exists($fullpath . $image[$tid]->path) ) { + $img = getimagesize($fullpath . $image[$tid]->path); + } + // $img = getimagesize($image[$tid]->url); // Make sure it worked. if (!$img) { return NULL;