Quote:
Today at 02:52 PM filburt1 said this in Post #43
No idea. Either I can't code or it's a 2.2.9 problem.
To whoever got this working: can you try to post revised instructions?
|
Here you go (thanks to Broekie in this thread):
Quote:
2. In online.php, find:
$userinfo[$key][showemail] = $user[showemail];
$userinfo[$key][receivepm] = $user[receivepm];
After that, add:
$userinfo[$key]['useragent'] = $user['useragent'];
$userinfo[$key]['actualurl'] = $user['location'];
3. In online.php, find:
$guests[$count][lastactivity] = $user[lastactivity];
After that, add:
$guests[$count]['useragent'] = $user['useragent'];
$guests[$count]['actualurl'] = $user['location'];
|