summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js
diff options
context:
space:
mode:
authortill <till@208e9e7b-5314-0410-a742-e7e81cd9613c>2007-08-29 11:13:24 +0000
committertill <till@208e9e7b-5314-0410-a742-e7e81cd9613c>2007-08-29 11:13:24 +0000
commitef71dcd69966886af8f5cf46b3e1a4d2adbc3fe2 (patch)
tree2aad54036e279766466ada03934bd9e4f979094c /roundcubemail/program/js
parent5bb5fd49552a4baad0fb1e2994bfebbd88bdb119 (diff)
* changed sessid to roundcube_sessid (#1484475)
git-svn-id: https://svn.roundcube.net/trunk@740 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
-rw-r--r--roundcubemail/program/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 1d09fe901..164ac4a1b 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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);
};