|
From: Benjamin C. <bc...@us...> - 2002-05-24 12:44:38
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv8001/inc
Modified Files:
auth.php
Log Message:
Moving from header/footer to wrap
Index: auth.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/auth.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- auth.php 29 Apr 2002 06:36:46 -0000 1.15
+++ auth.php 24 May 2002 12:44:35 -0000 1.16
@@ -166,7 +166,7 @@
function perm_invalid($actual_perms, $required_perms) {
global $t;
- $t->display('badperm.html');
+ $t->wrap('badperm.html');
}
function check_group($group) {
@@ -174,7 +174,7 @@
if (!$this->check_auth('group', $group)) {
$t->assign('group', $group);
- $t->display('badgroup.html');
+ $t->wrap('badgroup.html');
exit();
}
}
|