9 lines
166 B
PHP
9 lines
166 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Require/include this to make login required.
|
||
|
*/
|
||
|
|
||
|
if ($_SESSION['loggedin'] != true) {
|
||
|
sendError('SESSION EXPIRED: Please reauthenticate.', true);
|
||
|
}
|