15
you need to move three lines....
$myts =& MyTextSanitizer::getInstance();
$tags['POST_CONTENT'] = $myts->stripSlashesGPC($HTTP_POST_VARS['message']);
$tags['POST_NAME'] = $myts->stripSlashesGPC($HTTP_POST_VARS['subject']);
and then in notification.php
add
$subject = $subject." : ".$tags['POST_NAME'];
above
$notification->notifyUser($template_dir, $template, $subject, $tags);
(about line 673)
to get the thread subject in the email.
I've done mimimal testing and only just know what I'm doing so test it!
Thanks,
xgarb