mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2024-11-27 22:58:38 -05:00
11 lines
162 B
PHP
11 lines
162 B
PHP
|
<?php
|
||
|
|
||
|
if (!file_exists("../config.php"))
|
||
|
{
|
||
|
header("Location: ../");
|
||
|
}
|
||
|
else{
|
||
|
require_once("../config.php");
|
||
|
require_once("../classes/constellation.php");
|
||
|
|
||
|
}
|