From f55fb3c084b229d353bb40e21bc89ae4865b0403 Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Fri, 10 Nov 2023 13:09:49 +0530 Subject: [PATCH] (fixed): hostconfig for non localhost hosts --- htdocs/core/host_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/host_config.php b/htdocs/core/host_config.php index 734a45b..f130acf 100644 --- a/htdocs/core/host_config.php +++ b/htdocs/core/host_config.php @@ -5,6 +5,6 @@ if($currentHost == "localhost") { $basePath = "https://localhost/neosubhamoy/htdocs"; } else { - $basePath = "https://" + $host; + $basePath = "https://" . $currentHost; } ?> \ No newline at end of file