{jr_form_token}
The {jr_form_token} function is used to generate a Jamroom CSRF Form Token in a Jamroom form. The only time this is needed is if you are creating a custom form in a Jamroom skin templates that need to interact (or post to) PHP scripts in the Jamroom Core.
Example:
<form method="post" action="message.php?mode=message_create&jr_html_form_token={jr_form_token}
... rest of form ...
|
Without including the jr_html_form_token parameter, the submittal will fail due to Jamroom's anti CSRF checking.
|