Flat Link List

This commit is contained in:
Marius
2021-08-11 19:13:54 +02:00
parent b12a5e5c85
commit b4fa247eda

View File

@@ -280,8 +280,8 @@ function display_flat_link_list() {
$h .= "<label class=\"drawer-handle\" for=\"drawer-handle\">---</label>";
$h .= "<input type=\"checkbox\" id=\"drawer-handle\">";
$h .= "<div class=\"index-links\">";
foreach($flat_link_list as $index_file) {
$h .= "<div><a href=\"./" . $index_file . "\">" . $index_file . "</a></div>";
foreach($flat_link_list as $link) {
$h .= "<div><a href=\"./" . $link . "\">" . filemtime($link) . "</a></div>";
}
$h .= "</div>";
$h .= "</div>";