Is this the place (see copied part of class.mail.php script) to correct
the problem with the missing Issue ID in outgoing mails ?
If yes - what to change ?
----------------------------------
/**
* Correctly formats the subject line of outgoing emails/notes
*
* @access public
* @param integer $issue_id The issue ID
* @param string $subject The subject to be formatted
* @return string The formatted subject
*/
function formatSubject($issue_id, $subject)
{
return "[#$issue_id] " . trim(preg_replace("/\[#$issue_id\]
{0,1}/", '', $subject));
}
-----------------------------------------------