There's only one problem with this on 2.0.3:
To make it compatible with online.php, open online.php.
Find:
Code:
default:
$userinfo[activity] = 'unknown';
}
BEFORE that, add this:
Code:
case 'sedit.php':
$userinfo[activity] = 'editsig';
break;
Then find this:
Code:
default:
// Let's show the admin the location but put something false up for everyone else..
if ($bbuserinfo[usergroupid] == 6) {
$userinfo[location] = htmlspecialchars(stripslashes(replacesession($userinfo[location])));
$userinfo[where] = "<b>Unknown Location:</b> <a href=\"$userinfo[location]\">$userinfo[location]</a>";
} else {
// We were unable to parse the location
$userinfo[where] = "$bbtitle <a href='index.php?s=$session[sessionhash]'>Main Index</a>";;
}
BEFORE that, add this:
Code:
case 'editsig':
$userinfo[where] = "Changing Forum Signature";
break;