ich gebe dir einfach mal den Code den ich in den Portal drin habe
Vielleicht klappt es ja, vergleich es mal. Testen kann man ja
portal.php
$shoutbox_config['banned_user_id_view'] = $GLOBALS['shoutbox_config']['banned_user_id_view'];
if( strstr($shoutbox_config['banned_user_id_view'], ',') )
{
$fids = explode(',', $shoutbox_config['banned_user_id_view']);
while( list($foo, $id) = each($fids) )
{
$fid[] = intval( trim($id) );
}
}
else
{
$fid[] = intval( trim($shoutbox_config['banned_user_id_view']) );
}
reset($fid);
if ( $shoutbox_config['shoutbox_on'] && in_array($userdata['user_id'], $fid) == false )
{
include($phpbb_root_path . 'shoutbox_body.'.$phpEx);
}
portal_body.tpl
<table width="100%" cellpadding="2" cellspacing="1" border="0">
<tr>
<td class="row1" align="center"><span class="gensmall">
{SHOUTBOX_BODY}
<br /></span></td>
</tr>
</table>