Update log_backups.php

This commit is contained in:
jakani24
2024-06-08 17:48:40 +02:00
parent e75b297c04
commit a6844183f7

View File

@@ -54,7 +54,7 @@ if($perms[2]!=="1"){
} }
asort($fileCreationTimes); asort($fileCreationTimes);
// Loop through each file and print its name // Loop through each file and print its name
foreach ($fileCreationTimes as $file) { foreach ($fileCreationTimes as $file=> $creationTime) {
echo("<tr><td>".basename($file)."</td><td><a href='/backup/".basename($file)."' download>Download</a></td></tr>"); echo("<tr><td>".basename($file)."</td><td><a href='/backup/".basename($file)."' download>Download</a></td></tr>");
} }