summaryrefslogtreecommitdiffstats
path: root/core/js/js.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/js/js.js')
-rw-r--r--core/js/js.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/core/js/js.js b/core/js/js.js
index 5846d289880..2bb6cff0cb0 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -191,11 +191,13 @@ SVGSupport.checkMimeType=function(){
$.each(headerParts,function(i,text){
if(text){
var parts=text.split(':',2);
- var value=parts[1].trim();
- if(value[0]=='"'){
- value=value.substr(1,value.length-2);
+ if(parts.length==2){
+ var value=parts[1].trim();
+ if(value[0]=='"'){
+ value=value.substr(1,value.length-2);
+ }
+ headers[parts[0]]=value;
}
- headers[parts[0]]=value;
}
});
if(headers["Content-Type"]!='image/svg+xml'){