
10-01-2001, 01:34 AM
|
|
|
Join Date: Oct 2001
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally posted by Delhaze
Look in online.php:
Around the 200 lines mark your see lots of "case" statements
You need to add something like this:
PHP Code:
case 'links':
$userinfo[where] = "Viewing the <a href='links.php?s=$session[sessionhash]'>Links</a>";
break;
Also around the 500 lines mark you see more "case" statements
You need to add something like this:
PHP Code:
case 'links.php':
$userinfo[activity] = 'links';
break;
|
Worked great! Thanks!
|