Quote:
Originally Posted by MarcoH64
Just add (temporary) the following statement somewhere:
PHP Code:
echo "Userinfo: <pre>";print_r($vbulletin->userinfo);echo "</pre>";
This will show you a nice list of the contents in that script.
PS $bbuserinfo is used in 3.0, in 3.5 you should be using $vbulletin->userinfo.
|
I use the following. Don't you need to escape the HTML?
PHP Code:
echo "$vbulletin->userinfo = <pre>".htmlspecialchars(print_r($vbulletin->userinfo, true))."</pre>";