foto: fix admin indication of unrestricted access
[minimedit.git] / foto / index.php
index e9b9521f76b6e5fc36e3094ab6a6d9865c3022f8..89f5d060a74a6a878156ffa68019f8ce92594c9f 100644 (file)
@@ -3,7 +3,7 @@ $rootdir = $Page . $Args;
 
 if ($User and $User->admin('foto')) {
        $access = '🔓 Openbaar';
-       if (isset($PageAccess)) {
+       if (!empty($PageAccess)) {
                $access = "🔒 Bewoners";
                if ($PageAccess != $rootdir) {
                        $access .= sprintf(' vanaf <a href="%s">%s</a>',
@@ -36,7 +36,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.'"';