[phplib-dev] cvs commit
by max other posts by this author
May 31 2001 10:44PM messages near this date
[phplib-dev] Bugs?
|
[phplib-dev] cvs commit
From: max
Date: Thu May 31 16:33:26 2001
Modified files:
php-lib/php/session/session4_custom.inc
Log message:
parent:: crashes if the parent class in another file. Using Session::start() instead.
Index: php-lib/php/session/session4_custom.inc
diff -u php-lib/php/session/session4_custom.inc:1.15 php-lib/php/session/session4_custom.inc
:1.16
--- php-lib/php/session/session4_custom.inc:1.15 Thu May 31 16:00:34 2001
+++ php-lib/php/session/session4_custom.inc Thu May 31 16:32:55 2001
@@ -8,7 +8,7 @@
* 2000 Teodor Cimpoesu <teo@[...].net>
* @author Maxim Derkachev <kot@[...].ru> , Teodor Cimpoesu <teo@[...].net>,
* Ulf Wendel <uw@[...].de>
-* @version $Id: session4_custom.inc,v 1.15 2001/05/31 14:00:34 uw Exp $
+* @version $Id: session4_custom.inc,v 1.16 2001/05/31 14:32:55 max Exp $
* @package PHPLib
* @access public
*/
@@ -72,9 +72,7 @@
$this-> set_container();
- // WARNING: parent:: gave me a crash
-
- return parent::start();
+ return Session::start();
} // end func
// the following functions used in session_set_save_handler
---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-dev-unsubscribe@[...].de
For additional commands, e-mail: phplib-dev-help@lists.netuse.de
|