This commit is contained in:
2022-08-20 22:04:09 +02:00
parent ce647d4423
commit 58c905acf5
4 changed files with 27 additions and 273 deletions

View File

@@ -72,7 +72,7 @@ abstract class View extends StaticView {
$attributes["class"] = implode(" ", $classes);
}
$content = array_map(function ($item) { html_tag("li", [], $item, false); }, $items);
$content = array_map(function ($item) { return html_tag("li", [], $item, false); }, $items);
return html_tag_ex($tag, $attributes, $content, false);
}