Quote:
Originally Posted by myHybridcar.com
Thanks for the update  I can't seem to figure out what variable to use to get vBulletin login information. The old readme.txt said $vbuser, but that's not right anymore. How can I check if a user is logged in, and if so get their info?
|
Depends, usually if you just globalize the $vbulletin object, then you can use it like always:
Code:
global $vbulletin;
echo "Hi there " . $vbulletin->userinfo['username'];