sitemap: fix html syntax of list items
authorMischa POSLAWSKY <perl@shiar.org>
Sun, 17 May 2020 13:48:29 +0000 (15:48 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Sat, 5 Dec 2020 00:38:53 +0000 (01:38 +0100)
Restore closing tag accidentally removed in commit v4.0-7-g5e246b86aa
(2019-10-17) [linkref part to format a single page].

widget/sitemap.php

index 461690361aec77a64ff9fdea49aff65bda1107ac..73b4cdc475d273356fa264742be3e8e77f64dd9c 100644 (file)
@@ -5,6 +5,6 @@ print '<ul class="replies">'."\n";
 foreach ($search->files() as $Args => $sorted) {
        print '<li>';
        include 'linkref.php';
-       print "<li>\n";
+       print "</li>\n";
 }
 print "</ul>\n";