X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/fc74e45e15e3b1f17312f229496c25f7caff7d60..1abb286e88defee799e43cdd296914f74f722bde:/page.php diff --git a/page.php b/page.php index bca7a67..a05e158 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,19 +159,23 @@ 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'); } # load static contents +require_once('article.inc.php'); +$Article = new ArchiveArticle($staticpage); + ob_start(); # page body ob_start(); # inner html print '
'."\n\n"; $found = FALSE; -if (isset($staticpage)) { - $found = include "./$staticpage"; +if ($Article->file) { + print $Article->raw; + $found = 1; } print "
\n\n"; @@ -184,7 +189,7 @@ if ($Page) { } $Place += [ - 'user' => empty($User) ? '' : $User['name'], + 'user' => $User ? $User->login : '', 'url' => htmlspecialchars($_SERVER['REQUEST_URI']), ];