remove comment

This commit is contained in:
quenousimporte 2024-09-16 16:39:04 +02:00
parent 2e5b2fb7c5
commit 753180b7c7
1 changed files with 0 additions and 3 deletions

View File

@ -710,8 +710,6 @@
<?php <?php
if ($handle = opendir('epub')) { if ($handle = opendir('epub')) {
echo "<ul>"; echo "<ul>";
// Loop through the directory contents
while (false !== ($file = readdir($handle))) { while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") { if ($file != "." && $file != "..") {
$filePath = 'epub/' . $file; $filePath = 'epub/' . $file;
@ -719,7 +717,6 @@
echo "<li><a href='$filePath' download>$file</a> - $modTime</li>"; echo "<li><a href='$filePath' download>$file</a> - $modTime</li>";
} }
} }
echo "</ul>"; echo "</ul>";
closedir($handle); closedir($handle);
} }