Hi,
I'm trying to use this in a page which contains other variables, but they're all being wiped. I've done some general reading on the VBulletin variable cleaning utility, but can't for the life of me figure out what I'm doing wrong.
Basically an "id" variable is passed (using the "request" function) with the URL for a simple news script (news.php?action=viewnews&id=5)
But with global.php (thus init.php) being used the variable is being wiped. How can I get around that?
Code:
switch($_REQUEST['action']) {
case 'viewnews':
viewNews($id);
break;
}
Thanks