|
From: Javier S. <ja...@us...> - 2001-09-05 13:16:58
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv20834
Modified Files:
include.php
Log Message:
auth->check_auth() error whith non-array perms.
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- include.php 2001/09/03 20:16:34 1.50
+++ include.php 2001/09/05 13:16:55 1.51
@@ -162,7 +162,7 @@
}
}
} else {
- if (!$auth->auth[$auth_var][$req]) {
+ if (!$auth->auth[$auth_var][$reqs]) {
return false;
}
}
|