page: save document root for includes during shutdown
[minimedit.git] / page.inc.php
index 654f37fa7ebeee2a412b2348fc3bab61d1ac4d88..c0282eea341fcec090015953950f7c601c504c8f 100644 (file)
@@ -1,11 +1,11 @@
 <?php
 $body = ob_get_clean();
 
-include_once './head.inc.php';
+include_once DOCROOT.'head.inc.php';
 
 print "<header>\n";
 ob_start();
-include './menu.html';
+include DOCROOT.'menu.html';
 $nav = ob_get_clean();
 $nav = preg_replace_callback('{<a href="([^"]+)">(.*?)</a>}', function ($m) {
        $request = $_SERVER['REQUEST_URI'];
@@ -24,10 +24,9 @@ print "</header>\n\n";
 
 print $body;
 
-$footinc = realpath('footer.html'); # cwd lost during shutdown
 register_shutdown_function(function () {
        print '<footer>';
-       @include $GLOBALS['footinc'];
+       @include DOCROOT.'footer.html';
        print "</footer>\n";
 
        global $User;