This repository has been archived on 2019-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
Server-v1/onlyloggedin.php

9 lines
140 B
PHP
Raw Normal View History

<?php
/**
* Require/include this to make login required.
*/
if ($_SESSION['loggedin'] != true) {
2016-11-22 17:40:42 -07:00
sendError(SESSION_EXPIRED, true);
}