In the
online.php look for..
Code:
case 'index':
$userinfo[where] = "$bbtitle <a href='index.php?s=$session[sessionhash]'>Index</a>";
break;
Add below another case..
Code:
case 'home':
$userinfo[where] = "$bbtitle <a href='home.php?s=$session[sessionhash]'>Home</a>";
break;
if you name your index-file "home.php".
Look for..
Code:
case 'index.php':
$userinfo[activity] = 'index';
break;
Add below..
Code:
case 'home.php':
$userinfo[activity] = 'home';
break;
Just adapt ur code to the right names of ur files.