diff --git a/source/UI/js/Form/Editable.js b/source/UI/js/Form/Editable.js index 0f5dcc03..5539e02e 100644 --- a/source/UI/js/Form/Editable.js +++ b/source/UI/js/Form/Editable.js @@ -202,7 +202,7 @@ Ox.Editable = function(options, self) { function formatInputValue() { return self.options.type == 'input' - ? (self.options.unformat || Ox.identity)(self.options.value) + ? (self.options.unformat || Ox.decodeHTMLEntities)(self.options.value) : self.options.value.replace(//g, '\n\n'); }