aboutsummaryrefslogtreecommitdiff
path: root/www/forbidden.php
blob: f55c4badbdc04d0c1f96574fb93cc036e83c98a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
namespace phorkie;
/**
 * Show an access denied error
 */

header('HTTP/1.0 403 Forbidden');
render(
    'forbidden',
    array(
        'identity' => isset($_SESSION['identity']) ? $_SESSION['identity'] : null
    )
);
exit();
?>