X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/882347cba815e99ba8e7ad28d077420aa986e7c5..8dfcd9f98a316599cae7d94f56069c4ba79d2c93:/foto/index.php diff --git a/foto/index.php b/foto/index.php index f438cb9..d3e9898 100644 --- a/foto/index.php +++ b/foto/index.php @@ -1,9 +1,7 @@ admin) { +if ($User and $User->admin('foto')) { $access = '🔓 Openbaar'; if (isset($PageAccess)) { $access = "🔒 Bewoners"; @@ -19,7 +17,7 @@ if ($User and $User->admin) { $nav = explode('/', $rootdir); $nav[0] = "Foto's"; # override of root 'foto' $title = array_pop($nav); -$Place['title'] = implode(' ', $nav) . ': ' . $title; +$Article->title = implode(' ', $nav) . ': ' . $title; $link = ''; print "

"; @@ -30,7 +28,9 @@ foreach ($nav as $i => $linktitle) { print $title; print "

\n\n"; -print $intro; +if (isset($Article->raw)) { + print $Article->raw; # page intro +} function showthumb($path) { @@ -79,7 +79,7 @@ if ($imgs = glob("$rootdir/*.jpg")) { foreach ($imgs as $img) { if ($img == "$rootdir/index.jpg") { # cover image of current album - $Place['image'] = "/thumb/640x/$img"; + $Article->image = "/$img"; continue; } if (!is_link($img)) continue; @@ -89,3 +89,5 @@ if ($imgs = glob("$rootdir/*.jpg")) { include 'foto/album.inc.php'; } + +return;