Topic: Spinner on download keeps spinning
When a backup is created and an attempt is made to download the backed-up file which downloads successfully, the spinner at the top keeps spinning and there is no message to state that the download was successful.
When a backed-up file is attempted to be viewed, there is no sql file extraction on archived backups before a view is attempted. If there is no intention of doing it for some reason, then a filter should be made before an attempt to allow a view like:
if (!preg_match("/\.sql$/", $fname))
display_error(_("You can only view *.sql backup files"));
else {
..
..
in admin/backups.php file.