Quote:
Originally Posted by jodycwilliams
You're missing a comma after your 3 variable declaration
|
if you're referring to this:
Code:
// Part 1
$vbulletin->input->clean_array_gpc('p', array(
'normalanswer1' => TYPE_STR,
'dropdownanswer1' => TYPE_STR,
'normalanswer2' => TYPE_STR
));
that's not it... because the last variable in that array is not supposed to have a coma after TYPE_STR (at least that's how the plugin comes by default).