foto: replace deprecated <strike> element by <s>
[minimedit.git] / foto / index.php
index a97ec1c24ef0073e844df0cbb129834608484f49..850d82a722d49b55b429089aebb6bd02739d3cdf 100644 (file)
@@ -2,15 +2,17 @@
 $rootdir = $Page . $Args;
 
 if ($User->admin('foto')) {
-       $access = '🔓 Openbaar';
        if (!empty($PageAccess)) {
-               $access = "🔒 Bewoners";
+               $access = '<span class="icon icon-locked">&#x1F512;</span> Bewoners';
                if ($PageAccess != $rootdir) {
                        $access .= sprintf(' vanaf <a href="%s">%s</a>',
                                "/$PageAccess", pathinfo($PageAccess, PATHINFO_FILENAME)
                        );
                }
        }
+       else {
+               $access = '<span class="icon icon-locked">&#x1F513;</span> Openbaar';
+       }
        print "<aside>$access</aside>\n\n";
 }
 
@@ -65,7 +67,7 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) {
                $html = '<img src="/'.$cover.'" />';
                $html .= "<figcaption>$album</figcaption>";
                if (!$User->login and file_exists("$path/.private")) {
-                       $html = '<strike title="bewoners">'.$html.'</strike>';
+                       $html = '<s title="bewoners">'.$html.'</s>';
                }
                $html = "<figure>$html</figure>";