Modify forum/online.php
Find:
PHP Code:
case 'gallery':
$userinfo[where] = "Viewing Picture <a href='gallery.php?s=$session[sessionhash]'>Gallery</a>";
break;
After it, add:
PHP Code:
case 'portal':
$userinfo[where] = "$bbtitle <a href='../index.php?s=$session[sessionhash]'>Portal</a>";
break;
Find:
PHP Code:
case 'gallery.php':
$userinfo[activity] = 'gallery';
break;
After it, add:
PHP Code:
case '../index.php':
$userinfo[activity] = 'portal';
break;
That should work. Let me know if it doesn't.