page: replace output caching by article object
[minimedit.git] / foto / index.php
index 358ef942aae9bf492c13358ad22b6cb685fbd4c1..d3e989873ca9c3491f9875c864b6e1ca5c4e8531 100644 (file)
@@ -1,9 +1,7 @@
 <?php
-$intro = ob_get_clean();
-
 $rootdir = $Page . $Args;
 
-if ($User and $User->admin) {
+if ($User and $User->admin('foto')) {
        $access = '🔓 Openbaar';
        if (isset($PageAccess)) {
                $access = "🔒 Bewoners";
@@ -30,7 +28,9 @@ foreach ($nav as $i => $linktitle) {
 print $title;
 print "</h2>\n\n";
 
-print $intro;
+if (isset($Article->raw)) {
+       print $Article->raw;  # page intro
+}
 
 function showthumb($path)
 {
@@ -89,3 +89,5 @@ if ($imgs = glob("$rootdir/*.jpg")) {
 
        include 'foto/album.inc.php';
 }
+
+return;