瀏覽代碼

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

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@4280 a333f486-631f-4898-b8df-5754b55c2be0
romainq 9 年之前
父節點
當前提交
8289cf9751
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/attributedef.class.inc.php

+ 1 - 1
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');