From db40e32095d99d64befeb7cb7f508fab7e7d8d05 Mon Sep 17 00:00:00 2001 From: will Date: Wed, 13 Apr 2011 18:32:19 -0700 Subject: [PATCH] bug 9435: decoded text for disk offering. In fact, I added it globally so all text calling the fromdb() would be correctedly decoded. --- ui/scripts/cloud.core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/cloud.core.js b/ui/scripts/cloud.core.js index 5277ea0abee..7dee93befb4 100644 --- a/ui/scripts/cloud.core.js +++ b/ui/scripts/cloud.core.js @@ -1874,7 +1874,7 @@ function sanitizeXSS(val) { return val; val = val.replace(//g, ">"); //replace > whose unicode is \u003e - return val; + return unescape(val); } function getVmName(p_vmName, p_vmDisplayname) {