Will definately post a paypal donation for your hardwork on this mod.
Quote:
Originally Posted by lazyseller
Currently you have the ability to submit a reply form to a set thread id.
It would be really great if we could somehow make the thread id dynamic so the whole forum can use the same form. The form would be submitted depending where the user generates the form link from.
|
http://www.bananalive.co.cc/misc.php...eadid=(dynamic)
"You could use 'Form Hook: Form Start':"
Code:
$form['where'] = $vbulletin->input->clean_gpc('g', 'threadid', TYPE_UNIT);
if(!$form['where'])
{
$errormessage = "Error, no threadid specified.";
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
Im able to access the form via misc.php?do=form&fid=10&threadid=(dynamic) but the script is unable to figure out which thread to post in.
I left "Threadid where Post is Created:*" blank since this would need to be dynamic. Unsure where to proceed from here.