From 2af5180aa7b1ebfdc9318d400fe9c1c544d9f7bd Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 2 Feb 2026 13:58:20 +0100 Subject: [PATCH] case sensitive --- application/controllers/Debug.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index 18997390a..66333f8a4 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -106,7 +106,7 @@ class Debug extends CI_Controller } // Cache Info - $cache_info = $this->debug_model->get_cache_info(); + $cache_info = $this->Debug_model->get_cache_info(); $data['cache_available_adapters'] = $cache_info['adapters']; $data['cache_path'] = $cache_info['config']['cache_path'] ?: 'application/cache'; $data['cache_adapter'] = ucfirst($cache_info['config']['cache_adapter'] ?? 'file');