Quote:
Originally Posted by joelozito
I'm not sure if there are legal issues around posting the entire code, so here are the details: In the XML file, there are two code blocks surrounded by <phpcode> ... </phpcode>. In both those code blocks, you need to do the following:
Replace
<phpcode><![CDATA[
global $vbulletin;
...
With
<phpcode><![CDATA[if(!SKIP_SESSIONCREATE)
{
global $vbulletin;
...
And replace
$return_value = false;
}
]]></phpcode>
With
$return_value = false;
}
}]]></phpcode>
|
Thanks for detailing that info for me. I've got it in place now so I'll give it a go.