Fixed regression in 2.3.0-beta: placeholder $public_log$ was generating a mix of plain text and HTML markup whereas only plain text is expected

SVN:trunk[4280]
This commit is contained in:
Romain Quetiez
2016-07-05 09:50:10 +00:00
parent db47b2d05c
commit 07db5855a2

View File

@@ -2915,7 +2915,7 @@ class AttributeCaseLog extends AttributeLongText
switch($sVerb)
{
case '':
return $value->GetText();
return $value->GetText(true);
case 'head':
return $value->GetLatestEntry('text');