Date: 02/14/00
- Next message: David Orr: "[PHPLIB-DEV] informix support"
- Previous message: Kristian Koehntopp: "Re: [PHPLIB-DEV] cvs commit"
- Next in thread: Alexander Aulbach: "Re: [PHPLIB-DEV] cvs commit"
- Reply: Alexander Aulbach: "Re: [PHPLIB-DEV] cvs commit"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: chagenbu
Date: Mon Feb 14 23:08:50 2000
Modified files:
php-lib/php/session.inc
Log message:
slightly more compact
Index: php-lib/php/session.inc
diff -u php-lib/php/session.inc:1.59 php-lib/php/session.inc:1.60
--- php-lib/php/session.inc:1.59 Mon Feb 14 11:07:32 2000
+++ php-lib/php/session.inc Mon Feb 14 23:08:49 2000
@@ -5,7 +5,7 @@
* Copyright (c) 1998,1999 NetUSE GmbH
* Boris Erdmann, Kristian Koehntopp
*
- * $Id: session.inc,v 1.59 2000/02/14 10:07:32 kk Exp $
+ * $Id: session.inc,v 1.60 2000/02/14 22:08:49 chagenbu Exp $
*
*/
@@ -93,7 +93,7 @@
$this->name = $this->cookiename==""?$this->classname:$this->cookiename;
- if ( !isset($id) or ("" == $id) ) {
+ if (empty($id)) {
$newid=false;
switch ($this->mode) {
case "get":
-
PHPLIB Developers Mailing List. Send messages to <phplib-dev <email protected>>.
To unsubscribe, send "unsubscribe" to <phplib-dev-request <email protected>> in
the body, not the subject, of your message.
- Next message: David Orr: "[PHPLIB-DEV] informix support"
- Previous message: Kristian Koehntopp: "Re: [PHPLIB-DEV] cvs commit"
- Next in thread: Alexander Aulbach: "Re: [PHPLIB-DEV] cvs commit"
- Reply: Alexander Aulbach: "Re: [PHPLIB-DEV] cvs commit"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

