From 47d518d6d4ce6f09dcea747999c7c0053c03182a Mon Sep 17 00:00:00 2001 From: webninjasi Date: Thu, 3 Mar 2016 19:08:24 +0200 Subject: [PATCH 1/2] Fix invalid header in upload plugin --- core/modules/savers/upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/savers/upload.js b/core/modules/savers/upload.js index 897496b6a..a414582f3 100644 --- a/core/modules/savers/upload.js +++ b/core/modules/savers/upload.js @@ -54,7 +54,7 @@ UploadSaver.prototype.save = function(text,method,callback) { // Do the HTTP post var http = new XMLHttpRequest(); http.open("POST",url,true,username,password); - http.setRequestHeader("Content-Type","multipart/form-data; ;charset=UTF-8; boundary=" + boundary); + http.setRequestHeader("Content-Type","multipart/form-data; charset=UTF-8; boundary=" + boundary); http.onreadystatechange = function() { if(http.readyState == 4 && http.status == 200) { if(http.responseText.substr(0,4) === "0 - ") { From ed802d2933f22827bfee72dbfe07789dc3e2d624 Mon Sep 17 00:00:00 2001 From: webninjasi Date: Thu, 3 Mar 2016 21:43:18 +0200 Subject: [PATCH 2/2] Signing the CLA --- licenses/cla-individual.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/licenses/cla-individual.md b/licenses/cla-individual.md index 3cd0e2051..be8aa8248 100644 --- a/licenses/cla-individual.md +++ b/licenses/cla-individual.md @@ -276,3 +276,5 @@ Richard Rath @rcrath 2016/02/12 Eric Drechsel @edrex 2016/02/15 @FND 2016/02/27 + +Cengizhan Kurt, @webninjasi, 2016/03/03