]> git.proxmox.com Git - pve-docs.git/blobdiff - api-viewer/PVEAPI.js
iapi-viewer: correctly encode type text
[pve-docs.git] / api-viewer / PVEAPI.js
index a27d6c41afdc305a2181203ff8a860a59227a45a..75168e6ea03a37da3db8de9066176ac43dfa507d 100644 (file)
@@ -62,7 +62,7 @@ Ext.onReady(function() {
        metaData.style = 'white-space:normal;'
 
        if (pdef.typetext)
-           return pdef.typetext;
+           return Ext.htmlEncode(pdef.typetext);
 
        if (pdef['enum'])
            return pdef['enum'].join(' | ');
@@ -71,7 +71,7 @@ Ext.onReady(function() {
            return pdef.format;
 
        if (pdef.pattern) 
-           return pdef.pattern;
+           return Ext.htmlEncode(pdef.pattern);
 
        return '';
     };