[pmg-devel] [PATCH pmg-gui] fix html entities in system report file

Dominik Csapak d.csapak at proxmox.com
Thu Aug 8 14:28:41 CEST 2019


since the content of the window is encoded with 'Ext.htmlEncode'
we have to decode it with 'Ext.String.htmlDecode' (Ext.htmlDecode is
a deprecated alias for it) before downloading the file

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 js/Subscription.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js/Subscription.js b/js/Subscription.js
index 2cbd272..6b3e2ff 100644
--- a/js/Subscription.js
+++ b/js/Subscription.js
@@ -60,7 +60,7 @@ Ext.define('PMG.Subscription', {
 			{
 			    text: gettext('Download'),
 			    handler: function() {
-				var fileContent = reportWindow.getComponent('system-report-view').html;
+				var fileContent = Ext.String.htmlDecode(reportWindow.getComponent('system-report-view').html);
 				var fileName = getReportFileName();
 
 				// Internet Explorer
-- 
2.20.1




More information about the pmg-devel mailing list