Merge pull request #1209 from itflow-org/index-redirect

Redirect the blank index page to the start page
This commit is contained in:
Johnny 2025-04-12 11:54:05 -04:00 committed by GitHub
commit 87403e8c2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,11 @@ if (file_exists("config.php")) {
<!-- Page Content -->
<h1>Blank Page</h1>
<hr>
<?php
<?php
if (isset($config_start_page)) { ?>
<meta http-equiv="refresh" content="0;url=<?php echo $config_start_page; ?>">
<?php }
require_once "includes/footer.php";