Fixed HTML entity encoding issue while importing data
This commit is contained in:
parent
e28119c728
commit
2c161e6373
@ -297,7 +297,7 @@ MochiKit.Base.update(Clipperz.PM.UI.ImportContext.prototype, {
|
||||
if (isExportContent.test(aValue)) {
|
||||
textarea = MochiKit.DOM.TEXTAREA();
|
||||
textarea.innerHTML = aValue.replace(isExportContent, '$1');
|
||||
result = textarea.innerHTML;
|
||||
result = textarea.innerHTML.replace(/&/g, '&');
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user