Merge pull request #14267 from owncloud/encode-eventsource

Encode requesttoken
This commit is contained in:
Thomas Müller 2015-02-19 16:21:12 +01:00
commit 767dd4bde7
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ OC.EventSource=function(src,data){
dataStr+=name+'='+encodeURIComponent(data[name])+'&';
}
}
dataStr+='requesttoken='+oc_requesttoken;
dataStr+='requesttoken='+encodeURIComponent(oc_requesttoken);
if(!this.useFallBack && typeof EventSource !== 'undefined'){
joinChar = '&';
if(src.indexOf('?') === -1) {