page: call handler through index method
[minimedit.git] / page.php
index 95fd01fdb716d99c98c3e71485df69926a3dbaf6..0c101f8026e78dfe226e0350c56198c8f7e30136 100644 (file)
--- a/page.php
+++ b/page.php
@@ -69,7 +69,7 @@ if (isset($Page->raw)) {
 include_once 'format.inc.php';
 
 ob_start();
-if ($Page->handler and !require("./{$Page->handler}/index.php")) {
+if ($Page->handler and !$Page->index($Page->api)) {
        # replace contents by code output on false return
        $Page->raw = ob_get_clean();
 }
@@ -83,5 +83,8 @@ else {
        }
 }
 
-include_once 'page.inc.php';
+if (!$Page->api and $_SERVER['HTTP_ACCEPT'] !== 'application/xml') {
+       include_once 'page.inc.php';
+}
+print $Page->render();