Index: trunk/kernel/units/images/image_tag_processor.php =================================================================== diff -u -N -r6093 -r7867 --- trunk/kernel/units/images/image_tag_processor.php (.../image_tag_processor.php) (revision 6093) +++ trunk/kernel/units/images/image_tag_processor.php (.../image_tag_processor.php) (revision 7867) @@ -108,7 +108,7 @@ { // return local image or url $ret = $object->GetDBField('LocalThumb') ? PROTOCOL.SERVER_NAME.BASE_PATH.'/'.$object->GetDBField('ThumbPath') : $object->GetDBField('ThumbUrl'); - if ( $object->GetDBField('LocalThumb') && !file_exists(FULL_PATH.'/'.$object->GetDBField('ThumbPath')) ) $ret = ''; + if ( $object->GetDBField('LocalThumb') && !file_exists(FULL_PATH.'/'.$object->GetDBField('ThumbPath')) && !constOn('DBG_IMAGE_RECOVERY')) $ret = ''; } else { // if we need full which is not the same as thumb $ret = $object->GetDBField('LocalImage') ? PROTOCOL.SERVER_NAME.BASE_PATH.'/'.$object->GetDBField('LocalPath') : $object->GetDBField('Url');