//Вывод картинки тегом *START*//
$short_text = substr( stripslashes (strip_tags($row['full_story'], '<a><b><i><u><br></a><span>')), 0,60000 )."...";
$fullnews = $row['full_story'];
$noimage = "" . $config['http_home_url'] . "templates/{$config['skin']}/images/noimg.png";
if (preg_match_all( '#<img[^>]*\ssrc=('|")(.*?)\1.*?>#i',$fullnews,$total))
foreach( $total[2] as $fullnews )
{
$tpl->set( '{poster}',$fullnews);
} else {
$tpl->set( '{poster}',$noimage);
}
$tpl->set( '{full_text}',$short_text);
//Вывод картинки тегом *STOP*//