edit: allow any non-hidden filename
[minimedit.git] / page.inc.php
index 2c1fc6c7e201f160dbc4642a8e8d1b8fc09a0dc2..4cc693942f09a1659d0c20a2ec58c196265e7f13 100644 (file)
@@ -1,4 +1,6 @@
 <?php
+$body = ob_get_clean();
+
 include_once './head.inc.php';
 
 print "<header>\n";
@@ -10,17 +12,20 @@ $nav = preg_replace_callback('{<a href="([^"]+)">(.*?)</a>}', function ($m) {
        $html = $request == $m[1] ? $m[2] : $m[0]; # text or full link
        return $m[1] == substr($request, 0, strlen($m[1])) ? "<b>$html</b>" : $html;
 }, $nav);
+if (isset($User)) {
+       $nav = preg_replace('{\s*<li class="logout">.*?</li>}', '', $nav);
+       $nav = str_replace('[[login]]', $User['name'], $nav);
+}
+else {
+       $nav = preg_replace('{\s*<li class="login">.*?</li>}', '', $nav);
+}
 print $nav;
 print "</header>\n\n";
 
+print $body;
+
 register_shutdown_function(function () {
        include 'foot.inc.php';
        print "</body></html>\n";
 });
 
-print '<div class="article">'."\n\n";
-include "./$Page.html";
-print "</div>\n\n";
-
-if (file_exists("$Page.php")) include_once("./$Page.php");
-