login: optionally redirect to ?goto
[minimedit.git] / page.php
index dc7f0128a609ef0b0178b9318faff1e62d7f693f..4120a01bd05b4d0a476fe88c5eebbecc51327e90 100644 (file)
--- a/page.php
+++ b/page.php
@@ -16,12 +16,14 @@ function getoutput($blocks = [])
 
 # custom error handling
 
+define('DOCROOT', getcwd().'/');
+
 function fail($error)
 {
        http_response_code(500);
        include_once 'page.inc.php';
        ob_start();
-       require_once './500.html';
+       require_once DOCROOT.'500.html';
        print getoutput(['debug' => $error]);
 }
 
@@ -66,6 +68,7 @@ while (TRUE) {
                        @require_once './403.html';
                        exit;
                }
+               $PageAccess = $Page;
        }
 
        if (file_exists("$Page.php")) {
@@ -102,7 +105,7 @@ print "</div>\n\n";
 # execute dynamic code
 
 if ($Page) {
-       $found |= @require "./$Page.php";
+       $found |= require "./$Page.php";
 }
 
 # global html