Quote:
Originally Posted by Paul M
No I can't - that's local to the client only - the server is not aware of your status.
|
Actually, every command typed (and the dropdown is just a fancy way to type /away and such) passes through your code in vbulletin35CMS.php. You just don't pay attention to it at the moment.
PHP Code:
if($_POST['t'] AND $GLOBALS['vbulletin']['spkupdate'] AND intval($this->userid) > 0)
{
$ru = $this->updateSessionForUser->process(time(),$this->userid);
$ru = $this->updateLastactivityForUser->process(time(),$this->userid);
}
By examining $_POST you can pretty much track anything you want here.