foto: fix colon separator after empty root title
[minimedit.git] / foto / index.php
index 0ce4d206aa2a4c72b2336fc8a2b7e3fae665c71d..27482a484134b72485ed0dc8e5d298112631d563 100644 (file)
@@ -19,7 +19,7 @@ if ($User->admin('foto')) {
 $nav = explode('/', $rootdir);
 $nav[0] = "Foto's"; # override of root 'foto'
 $title = array_pop($nav);
-$Article->title = implode(' ', $nav) . ': ' . $title;
+$Article->title = ($nav ? implode(' ', $nav) . ': ' : '') . $title;
 
 $link = '';
 print "<h2>";
@@ -67,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>";