X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/47fdce547d48fe80bcaac1495bf12c7450a1380e..5e936f812affead3fb1b4c86cc90590d6ec7a953:/page.php diff --git a/page.php b/page.php index 21cc0a0..20f8244 100644 --- a/page.php +++ b/page.php @@ -61,7 +61,7 @@ $Page = urldecode(trim($Page, '/')) ?: 'index'; while (TRUE) { if (file_exists("$Page/.private")) { # access restriction - if (!isset($User)) { + if (empty($User)) { http_response_code(303); $target = urlencode($_SERVER['REQUEST_URI']); header("Location: /login?goto=$target"); @@ -95,7 +95,7 @@ if (file_exists("$Page$Args/index.html")) { elseif (file_exists("$Page$Args.html")) { $found = include "./$Page$Args.html"; } -elseif (isset($User) and $User['admin']) { +elseif (!empty($User['admin'])) { $found = include (file_exists("$Page/template.html") ? "$Page/template.html" : './template.html'); }