From 234c0d0ab051b308b922e6170419ebbc0636f93b Mon Sep 17 00:00:00 2001
From: till <till@php.net>
Date: Wed, 29 Aug 2007 07:13:24 -0400
Subject: [PATCH] * changed sessid to roundcube_sessid (#1484475)

---
 index.php         |    2 +-
 program/js/app.js |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/index.php b/index.php
index ff99098..199f494 100644
--- a/index.php
+++ b/index.php
@@ -66,7 +66,7 @@
 // instead the ones provided by RC
 ini_set('include_path', $INSTALL_PATH.PATH_SEPARATOR.$INSTALL_PATH.'program'.PATH_SEPARATOR.$INSTALL_PATH.'program/lib'.PATH_SEPARATOR.ini_get('include_path'));
 
-ini_set('session.name', 'sessid');
+ini_set('session.name', 'roundcube_sessid');
 ini_set('session.use_cookies', 1);
 ini_set('session.gc_maxlifetime', 21600);
 ini_set('session.gc_divisor', 500);
diff --git a/program/js/app.js b/program/js/app.js
index 1d09fe9..164ac4a 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3502,7 +3502,7 @@
 
     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 @@
     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);
     };
 

--
Gitblit v1.9.1