how to rewrite this code to the newest vbulletin forum software ?
PHP Code:
globalize($_REQUEST, array('perpage' => INT, 'pagenumber' => INT, 'showthumbs' => INT, 'userid' => INT));
--------------- Added [DATE]1241272909[/DATE] at [TIME]1241272909[/TIME] ---------------
i think i have solved it, this code seems to be working
PHP Code:
$vbulletin->input->clean_array_gpc('r', array(
'perpage' => TYPE_INT,
'pagenumber' => TYPE_INT,
'showtumbs' => TYPE_INT,
'userid' => TYPE_INT,
));