summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authortill <till@php.net>2007-08-29 11:13:24 +0000
committertill <till@php.net>2007-08-29 11:13:24 +0000
commit234c0d0ab051b308b922e6170419ebbc0636f93b (patch)
tree9ae186eeed0e90e2e7442aea34eeff8cd23419d5 /program
parent0144c50fc474c5f0145f3ac1fd2f0d2360e21695 (diff)
* changed sessid to roundcube_sessid (#1484475)
Diffstat (limited to 'program')
-rw-r--r--program/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 1d09fe901..164ac4a1b 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3502,7 +3502,7 @@ function rcube_http_request()
this.xmlhttp.onreadystatechange = function(){ _ref.xmlhttp_onreadystatechange(); };
this.xmlhttp.open('GET', url);
- this.xmlhttp.setRequestHeader('X-RoundCube-Referer', bw.get_cookie('sessid'));
+ this.xmlhttp.setRequestHeader('X-RoundCube-Referer', bw.get_cookie('roundcube_sessid'));
this.xmlhttp.send(null);
};
@@ -3536,7 +3536,7 @@ function rcube_http_request()
this.xmlhttp.onreadystatechange = function() { ref.xmlhttp_onreadystatechange(); };
this.xmlhttp.open('POST', url, true);
this.xmlhttp.setRequestHeader('Content-Type', contentType);
- this.xmlhttp.setRequestHeader('X-RoundCube-Referer', bw.get_cookie('sessid'));
+ this.xmlhttp.setRequestHeader('X-RoundCube-Referer', bw.get_cookie('roundcube_sessid'));
this.xmlhttp.send(req_body);
};