[hotfix] undo escape_html for data formatter

This commit is contained in:
Anand Doshi 2016-02-29 12:09:13 +05:30
parent 9ea3d761d9
commit 0cce9518f9

View file

@ -14,7 +14,7 @@ frappe.form.formatters = {
}
},
Data: function(value) {
return frappe.utils.escape_html(value==null ? "" : value);
return value==null ? "" : value;
},
Select: function(value) {
return __(frappe.form.formatters["Data"](value));