mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2025-11-02 03:30:22 -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");
|
||
|
|
|
||
|
|
}
|