I'm looking for some additional information on this variable: $vbulletin->userinfo . Specifically I'm looking for how it is being set.
In the login script (includes/functions_login.php), I find it referenced:
PHP Code:
// make sure our user info stays as whoever we were (for example, we might be logged in via cookies already)
$original_userinfo = $vbulletin->userinfo;
But at that point it seems to be already set. Is this something that happens in the vb_registry class?
I'm trying to figure out how it gets propagated with information, and at what point that happens. For example, $vbulletin->GPC receives its varaibles after a input_clean function is run on SuperGlobals. Is it the same sort of thing for userinfo?
Thanks,
Brent