В этом же файле находим:
$tpl->copy_template = str_replace("[xfvalue_{$preg_safe_name}]&
quot;, stripslashes($xfieldsdata[$value[0]]), $tpl->copy_template);
}
}
// Обработка дополнительных полей
После вставляем:
//Красивый выод by elektroshok (creostyle)
$search = array ("'<script[^>]*?>.*?</sc
ript>'si",
"'<[/!]*?[^<>]*?>
;'si",
"'([rn])+'&q
uot;,
"'&(quot|#34);'i",
"'&(amp|#38);'i",
"'&(lt|#60);'i",
"'&(gt|#62);'i",
"'&(nbsp|#160);'i",
"'&(iexcl|#161);'i",
"'&(cent|#162);'i",
"'&(pound|#163);'i",
"'&(copy|#169);'i",
"'�(d+);'e");
$replace = array ("",
"",
"\1",
""",
"&",
"<",
">",
" ",
chr(161),
chr(162),
chr(163),
chr(169),
"chr(\1)");
$img = get_img_basic($row['short_story']);
$img_t= str_replace('thumbs/','
9;,$img);
$images_show = "<!--ThumbBegin--><a href="$img_t" onClick='return hs.expand(this)'>";
$images_show_a = "</a><!--ThumbEnd-->";
$images = $images_show."<img src="$img" border="0" alt="$title">".$im
ages_show_a;
$row['short_story'] = preg_replace( $search,$replace, $row['short_story'] );
$row['short_story'] = substr (stripslashes($row['short_story']), 0, $charshort);
//Красивый выод by elektroshok (creostyle)
$tpl->set('{image}',$images);