Forum Moderators: rogerd
However i would like the variable reportform to be shown in the subject field of the priv message, but can not seem to find the appropiate place in privmsg.php
where do i put this so that the subject field shows the value of the reportform variable
if (!empty($HTTP_POST_VARS['reportform']) ¦¦!empty($HTTP_GET_VARS['reportform']) )
{
$post_subject= (!empty($HTTP_POST_VARS['reportform']) )? $HTTP_POST_VARS['reportform'] : $HTTP_GET_VARS['reportform'];
$post_subject = htmlspecialchars($post_subject);
}
else
{
$post_subject = $preview_subject;
}
...thanks