comment_form_action
Hook Added in Version:
EE 1.4.2
Hook File Location:
mod.comment.php
Hook Description:
Modify action="" attribute for comment form
Hook Parameters
- $RET - Current action URL
Hook Returns Data?
Yes
Appearance of Hook in the Code
if (isset($EXT->extensions['comment_form_action']))
{
$RET = $EXT->call_extension('comment_form_action', $RET);
if ($EXT->end_script === TRUE) return;
}
