Skip to content

Commit

Permalink
Update configure.php
Browse files Browse the repository at this point in the history
  • Loading branch information
cowpod committed Nov 10, 2024
1 parent 1cadd3e commit d6ce92b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configure.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
if (file_exists('./functions/config.php')) {
$config = include("./functions/config.php");
}

$settings = include("./functions/settings.php");
$settings=[];
if (file_exists('./functions/settings.php')) {
$settings = include("./functions/settings.php");
}
if (!isset($_GET['reconfig'])) {
if ($config['configured']) {
sleep(1);
Expand Down

0 comments on commit d6ce92b

Please sign in to comment.