[pmg-devel] applied: [PATCH pmg-gui] fix html entities in system report file
Fabian Grünbichler
f.gruenbichler at proxmox.com
Fri Aug 9 09:23:11 CEST 2019
On August 8, 2019 2:28 pm, Dominik Csapak wrote:
> 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
>
>
> _______________________________________________
> pmg-devel mailing list
> pmg-devel at pve.proxmox.com
> https://pve.proxmox.com/cgi-bin/mailman/listinfo/pmg-devel
>
>
More information about the pmg-devel
mailing list