[Phplib-commit] CVS: php-lib-stable/php session.inc,1.15,1.16
Brought to you by:
nhruby,
richardarcher
|
From: Giancarlo P. <pi...@us...> - 2002-05-29 15:11:23
|
Update of /cvsroot/phplib/php-lib-stable/php
In directory usw-pr-cvs1:/tmp/cvs-serv31824
Modified Files:
session.inc
Log Message:
corrected typo
Index: session.inc
===================================================================
RCS file: /cvsroot/phplib/php-lib-stable/php/session.inc,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** session.inc 29 May 2002 14:19:29 -0000 1.15
--- session.inc 29 May 2002 15:11:20 -0000 1.16
***************
*** 119,123 ****
switch ($this->mode) {
case "cookie":
! if ( $$this->newid && ( 0 == $this->lifetime ) ) {
SetCookie($this->name, $id, 0, "/", $this->cookie_domain);
}
--- 119,123 ----
switch ($this->mode) {
case "cookie":
! if ( $this->newid && ( 0 == $this->lifetime ) ) {
SetCookie($this->name, $id, 0, "/", $this->cookie_domain);
}
|