diff --git a/core/install.php b/core/install.php index 4ba4e666..d5326dbe 100644 --- a/core/install.php +++ b/core/install.php @@ -4,6 +4,8 @@ declare(strict_types=1); namespace Shimmie2; +require_once "core/urls.php"; + /** * Shimmie Installer * @@ -126,13 +128,15 @@ function ask_questions(): void $warn_msg = $warnings ? "
", $warnings) : ""; $err_msg = $errors ? "
", $errors) : "";
+ $data_href = get_base_href();
+
die_nicely(
"Install Options",
<<