adjust order of css files

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2023-12-22 14:30:23 +01:00
parent 150858485d
commit ac89fc7120
2 changed files with 3 additions and 3 deletions

View File

@@ -123,7 +123,7 @@ if ($req_host != Settings::Get('system.hostname') &&
(!empty(Settings::Get('system.froxloraliases')) && !in_array($req_host, array_map('trim', explode(',', Settings::Get('system.froxloraliases')))))
)) {
// not the froxlor system-hostname, show info page for domains not configured in froxlor
$redirect_file = FileDir::getUnknownDomainTemplate($req_host);
$redirect_file = FileDir::getUnknownDomainTemplate($req_host ?? "non-detectable http-host");
header('Location: '.$redirect_file);
die();
}

View File

@@ -1,8 +1,8 @@
{
"global": {
"css": [
"assets/css/custom.css",
"assets/scss/app.scss"
"assets/scss/app.scss",
"assets/css/custom.css"
],
"js": [
"assets/js/app.js",