7 lines
117 B
PHP
7 lines
117 B
PHP
<?php
|
|
if ($_SESSION['SESS_MEMBER_LEVEL']=="guest")
|
|
{
|
|
header("location: useroverview.php?error=accessDenied");
|
|
}
|
|
?>
|