Nathanwoodburn.github.io/upgrade.php

21 lines
268 B
PHP
Raw Normal View History

2021-08-30 15:06:36 +10:00
<?php
if (!defined('ASTRAPATH')) {
define('ASTRAPATH', dirname(__FILE__) . '/');
}
$files_to_delete = array('abeo.txt');
foreach ($files_to_delete as $file) {
if (file_exists(ASTRAPATH . $file)) {
unlink(ASTRAPATH . $file);
}
}
?>