X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/f1c8b901b85c7ca981eab8e26f83d40b4b5fe97b..2ec9c2255379e0a0a6043bbb129d34900e17c6be:/page.php diff --git a/page.php b/page.php index 71bc74a..f493c7f 100644 --- a/page.php +++ b/page.php @@ -7,11 +7,6 @@ set_include_path(implode(PATH_SEPARATOR, [ DOCROOT, __DIR__ ])); include_once 'error.inc.php'; -# user login and control - -include_once 'auth.inc.php'; // sets global $User -$Edit = isset($_GET['edit']); - # setup requested page $request = preg_replace('/\?.*/', '', @$_SERVER['PATH_INFO'] ?: $_SERVER['REQUEST_URI']); @@ -33,6 +28,10 @@ elseif (file_exists("$request/index.html")) { require_once('article.inc.php'); $Page = new ArchiveArticle($staticpage); +# user login and control + +include_once 'auth.inc.php'; // sets global $User + if ($Page->restricted) { # access restriction if (!$User->login) { @@ -84,6 +83,8 @@ if (isset($Page->raw)) { # output dynamic and/or static html +include_once 'format.inc.php'; + ob_start(); if ($Page->handler and !require("./{$Page->handler}/index.php")) { # replace contents by code output on false return