Forums / Cotonti / General / Colored username?

Dyllon
#33612 2012-03-22 02:48

I don't know what your intentions are in terms of changing the colors, but if you are familiar with PHP this is the function you would have to alter:

system/functions.php Line 1710

PHP
1
2
3
4
5
6
7
8
9
10
11
12
13
function cot_build_user($id, $user, $extra_attrs = '')
{
    global $cfg;
 
    if (!$id)
    {
        return empty($user) ? '' : $user;
    }
    else
    {
        return empty($user) ? '?' : cot_rc_link(cot_url('users', 'm=details&id='.$id.'&u='.$user), $user, $extra_attrs);
    }
}
We are what we repeatedly do. Excellence then, is not an act, but a habit.