Yeah, I just have to figure out how to pass it. In 3.6.x it was passed automatically.
--------------- Added [DATE]1219366978[/DATE] at [TIME]1219366978[/TIME] ---------------
Ok, ok. A cleaning was all that was necessary, and then I was able to access it (just using the method you did above).
Sample for those reading this:
PHP Code:
$vbulletin->input->clean_array_gpc('p', array('parsethis' => TYPE_BOOL));
if($vbulletin->GPC['parsethis'])
{
// parse away
}
Using $vbulletin->GPC['parsethis'] instead of $post['parsethis'] is no big deal, just a few search and replace changes.
Thanks again for the help.