PDA

View Full Version : make $vbulletin-> global?


zardos
21 Nov 2007, 09:44
Hi, am trying to use $vbulletin->userinfo['usernamne']; within a wordpress function, it works outside of the function but not inside, and i cant send it. So I need to make it global.

I tried echo global $vbulletin->userinfo['usernamne']; but no luck, some one have any tips?

ragtek
21 Nov 2007, 09:49
have you tried to put global $vbulletin; at beginning of the function?

function wordpress whatever() {
global $vbulletin;

makesomething;
}

UK Jimbo
21 Nov 2007, 13:26
I tend to access it with $GLOBALS['vbulletin']