|
From: Benjamin C. <bc...@us...> - 2001-12-10 13:43:50
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv32071/inc
Modified Files:
auth.php
Log Message:
Set up the group_ids array for filtering out anonymous browsers from restricted projects
Index: auth.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/auth.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- auth.php 2001/12/07 14:36:24 1.3
+++ auth.php 2001/12/10 13:43:46 1.4
@@ -33,6 +33,7 @@
if (!$sess->is_registered('auth')) {
$sess->register('auth');
+ $this->auth['group_ids'] = array(0);
}
if ($this->is_authenticated()) {
|