1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-27 03:21:29 +03:00

Bug #4067: add escapeDoubleQuotes to context variables

This commit is contained in:
Carlos Martín 2015-10-28 17:21:56 +01:00
parent 078f956df8
commit c583c70215

View File

@ -86,7 +86,11 @@ define(function(require) {
VectorRowTemplateHTML({key: key, value: value}));
} else {
$("tbody.custom_tags", context).append(
RowTemplateHTML({key: key, value: value}));
RowTemplateHTML({
key: key,
value: TemplateUtils.escapeDoubleQuotes(value)
})
);
}
});
}