auth: create user object regardless of login
[minimedit.git] / foto / index.php
index 89f5d060a74a6a878156ffa68019f8ce92594c9f..a97ec1c24ef0073e844df0cbb129834608484f49 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $rootdir = $Page . $Args;
 
-if ($User and $User->admin('foto')) {
+if ($User->admin('foto')) {
        $access = '🔓 Openbaar';
        if (!empty($PageAccess)) {
                $access = "🔒 Bewoners";
@@ -64,7 +64,7 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) {
 
                $html = '<img src="/'.$cover.'" />';
                $html .= "<figcaption>$album</figcaption>";
-               if (empty($User) and file_exists("$path/.private")) {
+               if (!$User->login and file_exists("$path/.private")) {
                        $html = '<strike title="bewoners">'.$html.'</strike>';
                }
                $html = "<figure>$html</figure>";