Index: branches/RC/core/units/images/image_tag_processor.php =================================================================== diff -u -N -r11920 -r11921 --- branches/RC/core/units/images/image_tag_processor.php (.../image_tag_processor.php) (revision 11920) +++ branches/RC/core/units/images/image_tag_processor.php (.../image_tag_processor.php) (revision 11921) @@ -1,6 +1,6 @@ Application->BaseURL(), '/'); - if ($object->GetDBField('SameImages') && $object->GetDBField('ThumbPath')) { + if (!$object->isLoaded() || ($object->GetDBField('SameImages') && $object->GetDBField('ThumbPath'))) { // we can auto-resize image, when source image available & we use same image for thumbnail & full image in admin $max_width = $this->getImageDimension('Width', $params); @@ -219,7 +219,7 @@ if ($max_width > 0 || $max_height > 0 || $format) { $src_image = FULL_PATH.$object->GetDBField('ThumbPath'); - if (file_exists($src_image)) { + if ($object->isLoaded() && file_exists($src_image)) { $image_helper =& $this->Application->recallObject('ImageHelper'); /* @var $image_helper ImageHelper */