N.490 Losing carrier returns and rich text formatting when the latest comments are copied to child tickets

SVN:trunk[4501]
This commit is contained in:
Romain Quetiez
2016-12-08 10:24:06 +00:00
parent c5a00a1bf1
commit 4ec3aeec92
5 changed files with 11 additions and 11 deletions

View File

@@ -639,12 +639,12 @@ class ormCaseLog {
}
public function GetModifiedEntry()
public function GetModifiedEntry($sFormat = 'text')
{
$sModifiedEntry = '';
if ($this->m_bModified)
{
$sModifiedEntry = $this->GetLatestEntry();
$sModifiedEntry = $this->GetLatestEntry($sFormat);
}
return $sModifiedEntry;
}