From 471cfc84f96b16d1d2682dc17a27f2b61f9e30c1 Mon Sep 17 00:00:00 2001
From: juanf <juanf>
Date: Wed, 13 Aug 2014 13:05:02 +0000
Subject: [PATCH] Bugfix to show HTML on non editable fields.

SVN: 32174
---
 .../newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js
index 16bcd940b72..3af1c5bde6a 100644
--- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js
+++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js
@@ -191,7 +191,7 @@ var FormUtil = new function() {
 		$fieldset.append($controlGroup);
 		
 		var $component = $("<span>", {'class' : 'form-control', 'style' : 'border:none; box-shadow:none;'});
-		$component.append(text);
+		$component.text(text);
 		$controls.append($component);
 		
 		return $fieldset;
-- 
GitLab