|
From: Benjamin C. <bc...@us...> - 2001-11-14 04:58:09
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv728/inc
Modified Files:
session.php
Log Message:
Code cleanup
Index: session.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/session.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- session.php 2001/11/13 03:48:39 1.1
+++ session.php 2001/11/14 04:58:06 1.2
@@ -482,8 +482,8 @@
*/
function set_tokenname(){
- $this->name = ("" == $this->cookiename) ? $this->classname : $this->cookiename;
- session_name ($this->name);
+ //$this->name = ("" == $this->cookiename) ? $this->classname : $this->cookiename;
+ session_name ($this->classname);
if (!$this->cookie_domain) {
$this->cookie_domain = get_cfg_var ("session.cookie_domain");
|