From 27ce0eb24d9e1553b69cd8bda3d3d5ddddcba2eb Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 30 Jan 2024 11:26:04 +0100 Subject: [PATCH] correct url after successful install --- install/index.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install/index.php b/install/index.php index 162369b12..b08ee7909 100644 --- a/install/index.php +++ b/install/index.php @@ -118,9 +118,7 @@ if ($_POST) { curl_setopt($ch, CURLOPT_URL, $wavelog_url . "/index.php/update/dxcc"); $result = curl_exec($ch); delDir(getcwd()); - header('Location: ' . $protocol . "://" . $_SERVER['HTTP_HOST'] . $_POST['directory']); - echo "

Install successful

"; - echo "

Please delete the install folder"; + header('Location: ' . $protocol . "://" . $_SERVER['HTTP_HOST'] . '/' . $_POST['directory']); exit; } } else {