X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/caa254384466d5f8477de38fcf7492a1ecd3f938..7c9537015a7361681323e5a5ce2f10d9c0ee42d3:/foto/index.php?ds=sidebyside diff --git a/foto/index.php b/foto/index.php index 1e973c7..a6378ef 100644 --- a/foto/index.php +++ b/foto/index.php @@ -6,14 +6,16 @@ $nav[0] = "Foto's"; # override of root 'foto' $title = array_pop($nav); $Page->title = ($nav ? implode(' ', $nav) . ': ' : '') . $title; -if (!$User) { +if ($Page->api) { $img = "$rootdir/index.jpg"; if (file_exists($img)) { # cover image of current album $Page->image = "/$img"; } if (!$Page->path) { - return glob("$rootdir/*", GLOB_ONLYDIR); #TODO: recurse + return array_map(function ($dir) { + return new ArchiveArticle($dir . '/index.html'); + }, glob("$rootdir/*", GLOB_ONLYDIR)); #TODO: recurse } return; }