this is an example of what I'm doing:
PHP Code:
$vbulletin->input->clean_array_gpc('r', array(
'name' => TYPE_STR,
'email' => TYPE_STR,
'subject' => TYPE_STR,
'message' => TYPE_STR
));
$name = $vbulletin->GPC['name'];
$email = $vbulletin->GPC['email'];
$subject = $vbulletin->GPC['subject'];
$message = $vbulletin->GPC['message'];
because in 3.0 the varible is created automatically by globalize(), so I manually create the varible for vb3.5 (the above example). I'm just not sure if I should do so. Because the other ways it would take me more time to convert.
what is your opinions ?