Quote:
Originally Posted by TigerC10
Well, you can always try:
$bbuserinfo['field11']
Sometimes that's defined.
|
I wouldn't say that!
$vbulletin->userinfo is always in the scope
maybe the problem is, that your session isn't actual, so that you're a guest and guests don't have userfields
try this:
PHP Code:
if (!$vbulletin->userinfo)
{
standard_error('not logged in');
}
else
{
die(print_r($vbulletin->userinfo));
}
So you'll see if your logged in and if yes, you'll see the whole userinfo array. Search for field11.
Maybe it's empty