mirror of https://github.com/apache/cloudstack.git
bug 9435: decoded text for disk offering. In fact, I added it globally so all text calling the fromdb() would be correctedly decoded.
This commit is contained in:
parent
07f3d2b31b
commit
db40e32095
|
|
@ -1874,7 +1874,7 @@ function sanitizeXSS(val) {
|
|||
return val;
|
||||
val = val.replace(/</g, "<"); //replace < whose unicode is \u003c
|
||||
val = val.replace(/>/g, ">"); //replace > whose unicode is \u003e
|
||||
return val;
|
||||
return unescape(val);
|
||||
}
|
||||
|
||||
function getVmName(p_vmName, p_vmDisplayname) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue