|
From: Patrick M. <mo...@su...> - 2002-02-26 08:58:18
|
I think the problem is the following part from inc/auth.php:
class uauth {
//...
function uauth() {
global $HTTP_SESSION_VARS;
if (!session_is_registered('auth')) {
session_register('auth');
$HTTP_SESSION_VARS['auth'] = array();
}
//...
session_register('auth') will not save the property of uauth, the
array, it will save the instance of uauth, the object itself in the
session.
|