You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
439 B

<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if (login()) {
if (isset($_GET['file'])) {
$file = _h($_GET['file']);
if (!empty($file)) {
unlink("backup/$file");
}
}
}
?>
<h2><?php echo i18n('Your_backups');?></h2>
<br>
<a class="btn btn-primary" href="<?php echo site_url() ?>admin/backup-start"><?php echo i18n('Create_backup');?></a>
<br><br>
<?php echo get_backup_files() ?>