[phpMP-CVS] CVS: phpMP/core sessions.php,1.6,1.7
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-09-22 10:28:38
|
Update of /cvsroot/phpmp/phpMP/core In directory sc8-pr-cvs1:/tmp/cvs-serv23339/core Modified Files: sessions.php Log Message: Index: sessions.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/core/sessions.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** sessions.php 22 Sep 2003 10:26:20 -0000 1.6 --- sessions.php 22 Sep 2003 10:28:35 -0000 1.7 *************** *** 64,68 **** $time = time(); $exp_time = $time + $Portal->cfg_get('session_length'); ! $ip = $this->_sess_ip_encoded(); $session_exists = false; $user_id = false; --- 64,68 ---- $time = time(); $exp_time = $time + $Portal->cfg_get('session_length'); ! $this->_sess_ip_encoded(); $session_exists = false; $user_id = false; *************** *** 157,161 **** $this->_data['session_start_time'] = $time; $this->_data['session_exp_time'] = $exp_time; ! $this->_data['session_ip'] = $ip; } else --- 157,161 ---- $this->_data['session_start_time'] = $time; $this->_data['session_exp_time'] = $exp_time; ! $this->_data['session_ip'] = $this->ip; } else |