limit to .md files

This commit is contained in:
quenousimporte 2024-10-08 17:52:30 +02:00
parent feb3fad070
commit 1baf2f76c9
2 changed files with 3 additions and 7 deletions

View File

@ -124,11 +124,11 @@
session_start();
if (!isset($_SESSION['index']) || isset($_GET['reindex']) || empty($_SESSION['index']))
{
$files = glob($dir . '/*');
$files = glob($dir . '/*.md');
usort($files, function($a, $b)
{
return filemtime($b) - filemtime($a);
});
$_SESSION['index'] = array_map(fn($value): string => str_replace('.md', '', $value), $files);
}
?>
?>

View File

@ -39,10 +39,6 @@
foreach($_SESSION['index'] as $path)
{
$name = basename($path);
if (str_ends_with($name, '.del'))
{
continue;
}
if ($filter)
{
@ -64,4 +60,4 @@
?>
</div>
</body>
</html>
</html>