I had a look in functions_newpost.php, but I can't find a hook overthere?
I've currently done:
in newthread_post_start:
PHP Code:
$vbulletin->input->clean_gpc('p', 'field1', TYPE_STR);
$newpost['field1'] =& $vbulletin->GPC['field1'];
$vbulletin->input->clean_gpc('p', 'field2', TYPE_STR);
$newpost['field2'] =& $vbulletin->GPC['field2'];
and in threadfpdata_start:
PHP Code:
$this->validfields['field1'] = array(TYPE_STR, REQ_NO);
$this->validfields['field2'] = array(TYPE_STR, REQ_NO);
But, this doesn't work. Any idea what I am doing wrong here?