|
From: Patrick M. <mo...@us...> - 2002-02-26 09:08:02
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv24420/inc
Modified Files:
auth.php
Log Message:
quick and dirty bugfix
$auth itself instead of $auth->auth is stored in the session
Index: auth.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/auth.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- auth.php 5 Jan 2002 19:49:35 -0000 1.5
+++ auth.php 26 Feb 2002 09:02:27 -0000 1.6
@@ -36,7 +36,9 @@
$HTTP_SESSION_VARS['auth'] = array();
}
- $this->auth =& $HTTP_SESSION_VARS['auth'];
+ $a =& $HTTP_SESSION_VARS['auth'];
+ $this->auth =& $a->auth;
+
if (!isset($this->auth['group_ids'])) {
$this->auth['group_ids'] = array(0);
|