I had the same problem today with some of the hacks I added.
Credit goes to g-force2k2 in this thread (
https://vborg.vbsupport.ru/showthrea...037#post298037)
What you would do is find
PHP Code:
case 'index':
$userinfo[where] = "$bbtitle <a href='index.php?s=$session[sessionhash]'>Main Index</a>";
break;
and under it place
PHP Code:
case 'backend':
$userinfo[where] = "Your custom text here";
break;
Then find
PHP Code:
case 'index.php':
$userinfo[activity] = 'index';
break;
and under that put
PHP Code:
case 'backend.php':
$userinfo[activity] = 'backend';
break;