From fcc54cb2daee09fa82483538677d10ab83544da8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 2 May 2026 13:16:40 +0000 Subject: [PATCH] style: clean up string concatenation in config_loader.php Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/a3e1e4bb-8eb1-4e6e-b1f8-7f3952301231 Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com> --- modules/billing/includes/config_loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/billing/includes/config_loader.php b/modules/billing/includes/config_loader.php index b175477c..6f445ba5 100644 --- a/modules/billing/includes/config_loader.php +++ b/modules/billing/includes/config_loader.php @@ -37,7 +37,7 @@ $projectRoot = realpath(__DIR__ . '/../../..'); if ($projectRoot !== false) { $panelConfig = $projectRoot . '/includes/config.inc.php'; } else { - $panelConfig = __DIR__ . '/../../..' . '/includes/config.inc.php'; + $panelConfig = __DIR__ . '/../../../includes/config.inc.php'; } if ($panelConfig && is_readable($panelConfig)) {