Quote:
Originally Posted by Citizen
Thanks! Does execution order matter?
Also, do I need to change something here?
Code:
?$session[sessionurl]do=hidesidebar
Or just add make a link with this exact text:
Code:
forums/index.php?$session[sessionurl]do=hidesidebar
|
Execution should not matter, and you can do the following with the link:
{$vbulletin->options['bburl']}/index.php?$session[sessionurl]do=hidesidebar
Also I found a slight bug in the code from taking a second peak:
PHP Code:
if ($vbulletin->GPC['hidesidebar'] = 1)
Should be:
PHP Code:
if ($vbulletin->GPC['hidesidebar'] == 1)