From e3cafc5e723f4085085c8393d8d940d00b4ea180 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Wed, 31 Oct 2018 22:12:54 +0100 Subject: [PATCH] Fixed forum authentication --- files.php | 43 ++++++++++++++++++++++++++++++++++++++++++- shared/html/index.php | 4 ++-- 2 files changed, 44 insertions(+), 3 deletions(-) diff --git a/files.php b/files.php index 58f26234..b1ae1b79 100644 --- a/files.php +++ b/files.php @@ -144,7 +144,48 @@ "path" => "./", "local-path" => "./web/html/" - ] + ], + + + + /* special web.teaspeak.de only auth files */ + [ /* login page and api */ + "web-only" => true, + "type" => "html", + "search-pattern" => "/.*\.(php|html)/", + "build-target" => "dev|rel", + "search-depth" => 1, + + "path" => "./", + "local-path" => "./auth/" + ], + [ /* javascript */ + "web-only" => true, + "type" => "js", + "search-pattern" => "/.*\.js$/", + "build-target" => "dev|rel", + + "path" => "js/", + "local-path" => "./auth/js/" + ], + [ /* web css files */ + "web-only" => true, + "type" => "css", + "search-pattern" => "/.*\.css$/", + "build-target" => "dev|rel", + + "path" => "css/", + "local-path" => "./auth/css/" + ], + [ /* certificates */ + "web-only" => true, + "type" => "pem", + "search-pattern" => "/.*\.pem$/", + "build-target" => "dev|rel", + + "path" => "certs/", + "local-path" => "./auth/certs/" + ], ]; function list_dir($base_dir, $match = null, $depth = -1, &$results = array(), $dir = "") { diff --git a/shared/html/index.php b/shared/html/index.php index 41fb9419..b99a4062 100644 --- a/shared/html/index.php +++ b/shared/html/index.php @@ -156,9 +156,9 @@
"; if (logged_in()) { - $TAG = $TAG . "logout"; + $TAG = $TAG . "logout"; } else { - $TAG = $TAG . "Login via the TeaSpeak forum."; + $TAG = $TAG . "Login via the TeaSpeak forum."; } echo $TAG . "