forum_submit_post_end
Hook Added in Version:
EE 1.5.2
Hook File Location:
mod.forum_core.php
Hook Description:
After the post is submitted, do some more processing
Hook Parameters
- $this - the current Forum class object
Hook Returns Data?
No
Appearance of Hook in the Code
if (isset($EXT->extensions['forum_submit_post_end']))
{
$edata = $EXT->call_extension('forum_submit_post_end', $this);
if ($EXT->end_script === TRUE) return $edata;
}
Additional Notes
Note that user notifications have not been sent at this point
