CLEAN: use fullUrl when possible
[phorkie.git] / www / secure.php
index 4b81d5963d08f7812a965d10282151c00cb5829c..95066141445d3a6d15844837b5062c9c40533a50 100644 (file)
@@ -6,14 +6,20 @@ namespace phorkie;
 require_once 'www-header.php';
 $_SESSION['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
 if (!isset($_SESSION['identity'])) {
-    header("Location: /login");
+    header("Location: " . Tools::fullUrl('/login'));
     exit;
 }
 if ($GLOBALS['phorkie']['auth']['secure'] > 0 &&
     $GLOBALS['phorkie']['auth']['userlist']) {
     if (!in_array($_SESSION['identity'], $GLOBALS['phorkie']['users'])) {
-        $redirect = 'http://' . $_SERVER['HTTP_HOST'] . "/forbidden";
-        header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
+        header('HTTP/1.1 403 Forbidden');
+        $db = new Database();
+        render(
+            'forbidden',
+            array(
+                'recents'     => $db->getSearch()->listAll(0, 5, 'crdate', 'desc'),
+            )
+        );
         exit;
     }
 }