PHP Code:
$vbulletin->input->clean_gpc('r', 'goto', TYPE_STR);
Change "R" based on which superglobal you want to clean from (request, post, get, cookies, etc)
Change goto to the variable you wish to clean, and type_str to the type you want to clean it to (find them in a file somewhere, not sure which)
You should then use the below method to access the variable (not it doesnt get "globalised").
PHP Code:
$vbulletin->GPC['goto']
You may also clean multiple variables in one command,
PHP Code:
$vbulletin->input->clean_array_gpc('r', array(
'perpage' => TYPE_UINT,
'pagenumber' => TYPE_UINT,
'highlight' => TYPE_STR,
'posted' => TYPE_BOOL,
));