open online.php
find
PHP Code:
case 'showthread':
if (!$thread[title][$userinfo[threadid]] || !$forum[canview][$thread[forumid][$userinfo[threadid]]] || (!$forum[canviewothers][$thread[forumid][$userinfo[threadid]]] && $thread[postuserid][$userinfo[threadid]] != $bbuserinfo[userid])) {
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing Thread <a href='showthread.php?s=$session[sessionhash]&threadid=$userinfo[threadid]'>".$thread[title][$userinfo[threadid]]."</a>";
}
break;
below add:
PHP Code:
case 'shoutbox':
$userinfo[where] = "Viewing Shoutbox";
break;
then find
PHP Code:
case 'sendtofriend.php':
$userinfo[activity] = 'sendto';
break;
below add:
PHP Code:
case 'shoutbox.php':
$userinfo[activity] = 'shoutbox';
break;
ps, yes you can post it on other positions, but this were the two fastest i found