improvements (?) on sanitization

master
Mark MacKay 2021-05-18 12:26:35 -05:00
parent 23f5bfd4a7
commit 834e3e7f0e
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ svgedit.utilities.text2xml = function(sXML) {
} }
if(sXML.indexOf('xlink:href') >= 0) { if(sXML.indexOf('xlink:href') >= 0) {
sXML = sXML.replace('xlink:href', 'href'); sXML = sXML.split("xlink:href").join("href");
} }
var out; var out;