There is a bug with the musername stuff. colored usernames do not show up properly in the "Whats Going On?" bar and also the "Who's Online" page because the custom utt database variables are not passed into the fetch_musername function.
Here's the fix:
Open up online.php
FIND:
PHP Code:
SELECT user.username
REPLACE WITH:
SAVE AND CLOSE
Open up index.php
FIND:
REPLACE WITH:
FIND:
PHP Code:
if ($userid != $bbuserinfo['userid'])
{
$inforum["$loggedin[inforum]"]++;
}
ADD BELOW:
PHP Code:
else
{
$loggedin['uttstore_boldusername'] = $bbuserinfo['uttstore_boldusername'];
$loggedin['uttstore_usernamecolor'] = $bbuserinfo['uttstore_usernamecolor'];
$loggedin['uttstore_italicsusername'] = $bbuserinfo['uttstore_italicsusername'];
$loggedin['usergroupid'] = $bbuserinfo['usergroupid'];
$loggedin['displaygroupid'] = $bbuserinfo['displaygroupid'];
$loggedin['joingroupid'] = $bbuserinfo['joingroupid'];
}
SAVE AND CLOSE
This still does not make glow display on anything except showthread, but that may prove difficult to fix.