diff --git a/core/js/js.js b/core/js/js.js index 841f3a769f..9ca0730fa6 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -712,11 +712,11 @@ SVGSupport.checkMimeType=function(){ if(value[0]==='"'){ value=value.substr(1,value.length-2); } - headers[parts[0]]=value; + headers[parts[0].toLowerCase()]=value; } } }); - if(headers["Content-Type"]!=='image/svg+xml'){ + if(headers["content-type"]!=='image/svg+xml'){ replaceSVG(); SVGSupport.checkMimeType.correct=false; }