X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/ce951ad9579fd96a7ba185f6d7cbd99bd37b9ec4..882347cba815e99ba8e7ad28d077420aa986e7c5:/page.php diff --git a/page.php b/page.php index bca7a67..894efc0 100644 --- a/page.php +++ b/page.php @@ -113,6 +113,7 @@ error_reporting(error_reporting() & ~E_FATAL); # user login and control +$User = NULL; include_once 'auth.inc.php'; $Edit = isset($_GET['edit']); @@ -158,7 +159,7 @@ if (file_exists("$Page$Args.html")) { elseif (file_exists("$Page$Args/index.html")) { $staticpage = "$Page$Args/index.html"; } -elseif (!empty($User['admin'])) { +elseif ($User and $User->admin) { $staticpage = (file_exists("$Page/template.html") ? "$Page/template.html" : 'template.html'); } @@ -184,7 +185,7 @@ if ($Page) { } $Place += [ - 'user' => empty($User) ? '' : $User['name'], + 'user' => $User ? $User->login : '', 'url' => htmlspecialchars($_SERVER['REQUEST_URI']), ];