hi lynne,
thanks a lot - thats that what i needed

"fixing" the search.php shouldn't be the problem.
many big thanks,
thomas
for anyone, who want's do do the same (it shows for admin all new posts html-coded):
about line 2533
// get first 200 chars of page text
change arround there to:
PHP Code:
// do not show post icon
else
{
$post['posticon'] = false;
$post['posticonpath'] = '';
$post['posticontitle'] = '';
}
// get first 200 chars of page text
if($search['userid'] == 1){
require_once(DIR . '/includes/class_bbcode.php');
$bbcode =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$post['pagetext'] = $bbcode->parse($post['pagetext']);
}
else {
$post['pagetext'] = preg_replace('#\[quote(=("|"|\'|)??.*\\2)?\](((?>[^\[]*?|(?R)|.))*)\[/quote\]#siUe', "process_quote_removal('\\3', \$display['highlight'])", $post['pagetext']);
$post['pagetext'] = $hhr->parse_bbcode($post['pagetext'], $post['forumid'], $post['threadid'], $post['postid'], $post['userid']);
$post['pagetext'] = htmlspecialchars_uni(fetch_censored_text(trim(fetch_trimmed_title(strip_bbcode($post['pagetext'], 1), 200))));
}
// get post title