Astra Security

This commit is contained in:
Nathanwoodburn
2021-08-30 15:06:36 +10:00
parent 9dc1cdddca
commit 9f437f9588
547 changed files with 65968 additions and 0 deletions

21
upgrade.php Normal file
View File

@@ -0,0 +1,21 @@
<?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);
}
}
?>