Replace invalid characters with a dashed square Unicode character instead of stripping
This commit is contained in:
parent
049cead550
commit
cf93bd7042
1 changed files with 1 additions and 1 deletions
|
@ -2291,6 +2291,6 @@ Zotero.Sync.Server.Data = new function() {
|
|||
|
||||
|
||||
function _xmlize(str) {
|
||||
return str.replace(/[\u0000-\u0008\u000b\u000c\u000e-\u001f\ud800-\udfff\ufffe\uffff]/g, '');
|
||||
return str.replace(/[\u0000-\u0008\u000b\u000c\u000e-\u001f\ud800-\udfff\ufffe\uffff]/g, '\u2B1A');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue