From 8e3939a885754a6ebc8758f5ef23ab9ea3ee3e99 Mon Sep 17 00:00:00 2001 From: cgfhtw Date: Mon, 6 Nov 2023 11:20:00 +0100 Subject: [PATCH] bug: path seperator --- cis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cis.php b/cis.php index 276af93f1..1ef9895f0 100644 --- a/cis.php +++ b/cis.php @@ -313,7 +313,7 @@ $assign_to_config['base_url'] = APP_ROOT; include_once 'vendor/autoload.php'; // Autoload custom controllers, models, etc that are present in the application/core directory -require_once $application_folder . 'config/core_includes.php'; +require_once rtrim($application_folder, '/') . '/config/core_includes.php'; // Now the bootstrap file require_once BASEPATH . 'core/CodeIgniter.php';