X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/e3be85e24011ce42b9c48e19a21b9e7faba72767..063591ce4b064ed149aad58f0c619895c9ae4014:/foto/index.php diff --git a/foto/index.php b/foto/index.php index e9b9521..0ce4d20 100644 --- a/foto/index.php +++ b/foto/index.php @@ -1,16 +1,18 @@ admin('foto')) { - $access = '🔓 Openbaar'; - if (isset($PageAccess)) { - $access = "🔒 Bewoners"; +if ($User->admin('foto')) { + if (!empty($PageAccess)) { + $access = '🔒 Bewoners'; if ($PageAccess != $rootdir) { $access .= sprintf(' vanaf %s', "/$PageAccess", pathinfo($PageAccess, PATHINFO_FILENAME) ); } } + else { + $access = '🔓 Openbaar'; + } print "\n\n"; } @@ -36,7 +38,7 @@ function showthumb($path) { // assume all album entries are symlinks to archive originals $target = preg_replace('{^(\.\./)*}', '', readlink($path)); - $thumb = 'thumb/250/' . $target; + $thumb = 'thumb/262/' . $target; @list ($order, $size, $title) = explode(':', pathinfo($path, PATHINFO_FILENAME), 3); $imgtag = 'img src="/'.$thumb.'"'; @@ -64,7 +66,7 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { $html = ''; $html .= "
$album
"; - if (empty($User) and file_exists("$path/.private")) { + if (!$User->login and file_exists("$path/.private")) { $html = ''.$html.''; } $html = "
$html
";