Quote:
Originally posted by Craigr
Is there any way you can edit your online.php to add the template locations so you can see people moving about the site?
For example i am browsing :
http://www.mysite.com/forum/show.php?pg=Links
In who is online i want to show the person:
Viewing the links page.
|
Try this one:
Edit online.php, find:
PHP Code:
}
$userinfo[time] = vbdate($timeformat,$userinfo[lastactivity]);
Before that add:
PHP Code:
// Logician WebTemplates Hack
if (preg_match("/(pg=)(.*)(&)/siU", $userinfo[location], $l_match1) OR preg_match("/(pg=)(.*)/siU", $userinfo[location], $l_match2))
{
if ($l_match1[2]) {$lmatch=$l_match1[2];} else {$lmatch=$l_match2[2];}
$userinfo[where]= 'Reading Webtemplate: <a href="show.php?pg='.$lmatch.'" target="_blank">'.$lmatch.'</a>';
}
// Logician WebTemplates Hack
Enjoy..