Make logging in mandatory.

This commit is contained in:
2016-09-02 11:16:01 +02:00
parent bfcbe5aa2e
commit 3587447cc0
8 changed files with 60 additions and 57 deletions

View File

@@ -12,6 +12,10 @@ class ViewPeople extends HTMLController
public function __construct()
{
// Ensure we're logged in at this point.
if (!Registry::get('user')->isLoggedIn())
throw new NotAllowedException();
$page = isset($_GET['page']) ? (int) $_GET['page'] : 1;
$start = ($page - 1) * self::PER_PAGE;
$total_count = Tag::getCount(1, 'Person');