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:
will 2011-04-13 18:32:19 -07:00
parent 07f3d2b31b
commit db40e32095
1 changed files with 1 additions and 1 deletions

View File

@ -1874,7 +1874,7 @@ function sanitizeXSS(val) {
return val;
val = val.replace(/</g, "&lt;"); //replace < whose unicode is \u003c
val = val.replace(/>/g, "&gt;"); //replace > whose unicode is \u003e
return val;
return unescape(val);
}
function getVmName(p_vmName, p_vmDisplayname) {