Quote:
Originally Posted by dknelson
As you can see, it is posting the threadID for location instead of the actual state. I am not using custom output. Is the only way to correct this to use custom output with $qo
|
Not that i can think of.
$qo won't work as it's custom question.
You could use custom output and some extra code in form hook before submit to do it. 9you would use $state in custom output)
Form hook: before submit
PHP Code:
$threadinfo = fetch_threadinfo($q[8]);
$state = $threadinfo[title];
Replacing 8 with appropriate question hash
Edit: this won't work the hook is after the form output is done.