mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2026-06-30 23:58:29 -04:00
Fix #14 - show installation dialog on 404 page if config not found
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
require("template.php");
|
||||
require_once("template.php");
|
||||
|
||||
if (!file_exists("config.php"))
|
||||
{
|
||||
require("install.php");
|
||||
require_once("install.php");
|
||||
}
|
||||
else{
|
||||
|
||||
require("config.php");
|
||||
require("classes/constellation.php");
|
||||
require_once("config.php");
|
||||
require_once("classes/constellation.php");
|
||||
|
||||
$offset = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user