this solves a isue, where the "click here" did not work prober in the report forum.
in file posting.php
- Code: Select all
[FIND and remove]
$extra_message_body = ( !empty($HTTP_POST_VARS['extra_message_body']) ) ? $HTTP_POST_VARS['extra_message_body'] : '';
[FIND]
$message = ($lock_subject) ? $extra_message_body.$message :
$message;
[REPLACE WITH]
if ($lock_subject)
{
$url = "<a href='viewtopic.$phpEx?" . POST_POST_URL . "=" .$lock_subject."#".$lock_subject."'> ";
$message = addslashes(sprintf($lang['Link_to_post'],$url,"</a>")).$message;
}
[FIND]
$preview_message = ($lock_subject) ? stripslashes($extra_message_body).$preview_message : $preview_message;
[REPLACE WITH]
$url = "<a href='viewtopic.$phpEx?" . POST_POST_URL . "=" .$lock_subject."#".$lock_subject."'> ";
$extra_message_body= sprintf($lang['Link_to_post'],$url,"</a>");
$preview_message = ($lock_subject) ? stripslashes($extra_message_body).$preview_message : $preview_message;
[FIND and remove]
$url = "<a href='".append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=" .$postreport."#".$postreport)."'> ";
$extra_message_body= sprintf($lang['Link_to_post'],$url,"</a>");
[FIND and remove]
$hidden_form_fields .= (!empty($extra_message_body))?'<input type="hidden" name="extra_message_body" value="'.$extra_message_body.'" />':'';
it have been a litle difficult to keep track of the needed changes - so please make a backup of your posting.php before upgrade - in case I did miss something


