Quote:
Originally Posted by corn dog
Thank you.
Hmm.It doesnt work very well O_o Ill try it again....
|
Is the page located "outside" your forums folder that you are trying to do this with, or is it located inside your forums folder. I know how you can fix this if the page is
inside your forums folder.
Open: includes/functions_online.php
Find:
Code:
case 'bugs':
$userinfo['action'] = construct_phrase($vbphrase['viewing_x'], 'Bugs'); // Don't report 'bugs' as needing to be translated please :p
break;
After Add:
Code:
case 'yourpage':
$userinfo['action'] = 'Viewing Yourpage';
$userinfo['where'] = "<a href=\"yourpage.php?$session[sessionurl]\">Yourpage</a>";
break;
Find:
Code:
case 'bugs.php':
$userinfo['activity'] = 'bugs';
break;
After Add:
Code:
case 'yourpage.php':
$userinfo['activity'] = 'yourpage';
break;
Just change were you see "yourpage" with the page name of your page instead.