From 07db5855a2459da71b76ecf43eac2c712fcdccfe Mon Sep 17 00:00:00 2001 From: Romain Quetiez Date: Tue, 5 Jul 2016 09:50:10 +0000 Subject: [PATCH] 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] --- core/attributedef.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index 0cd8a0eda..6a3d8fdd5 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -2915,7 +2915,7 @@ class AttributeCaseLog extends AttributeLongText switch($sVerb) { case '': - return $value->GetText(); + return $value->GetText(true); case 'head': return $value->GetLatestEntry('text');