Verfasst: 26.07.2007 18:05
Leider, hat der entwickler vom wer wa da mod, auch nichts. 

phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
#-----[ OPEN ]------------------------------------------
#
index.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx);
#
#-----[ AFTER, ADD ]-----------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
#
#-----[ FIND ]------------------------------------------
#
if ( $row['user_level'] == ADMIN )
{
$user_today .= ' style="color: #' . $theme['fontcolor3'].'"><b>' . $row['username'].'</b></a>';
}
elseif ( $row['user_level'] == MOD )
{
$user_today .= ' style="color: #' . $theme['fontcolor2'].'"><b>' . $row['username'].'</b></a>';
}
else
{
$user_today .= '>' . $row['username'] . '</a>';
}
#
#-----[REPLACE WITH ]------------------------------------------
#
$user_today .= color_group_colorize_name($row['user_id']);
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------