Originally Posted by Dr.CustUmz
var_dump($_REQUEST);
var_dump($vbulletin->GPC);
I am a bit baffled why there are references to products I have not installed on this fresh install, The only product I have installed is the product I am working on.
This is the portion in my page where the productid and catid are added, I have stripped a majority of this page but kept what should be relevant.
I guess I should be asking is, how is a GPC variable even created? Because I know I can use productid on numerous pages, although I am unable to use catid on these pages.
Interesting to note catid does not get passed even in $_REQUEST.. it definitely has a named field?
It'll only get registered in $vbulletin->GPC if it's first registered in $_REQUEST before your call to $vbulletin->input->clean_array_gpc();
In regards to it referencing plugins you don't have activated, I assume they are being passed in via $_COOKIE (which clean_gpc/clean_array_gpc will also run on).
No members have liked this post.