From 03cb2abc2c33fea14f1726c0f08c110071040d15 Mon Sep 17 00:00:00 2001 From: Fabian Berg Date: Mon, 23 Feb 2026 07:07:26 +0100 Subject: [PATCH] strtolower complete Co-authored-by: Joerg (DJ7NT) --- 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 7a90bd50a..825342704 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -110,7 +110,7 @@ class Debug extends CI_Controller $data['cache_available_adapters'] = $cache_info['adapters']; $data['cache_path'] = $cache_info['config']['cache_path'] ?: 'application/cache'; $data['cache_adapter'] = strtolower($cache_info['config']['cache_adapter'] ?? 'file'); - $data['cache_backup'] = strtolower($cache_info['config']['cache_backup']) ?? 'file'; + $data['cache_backup'] = strtolower($cache_info['config']['cache_backup'] ?? 'file'); $data['cache_key_prefix'] = $cache_info['config']['cache_key_prefix'] ?: __("(empty)"); $data['active_adapter'] = strtolower($cache_info['active']['adapter'] ?? ($cache_info['config']['cache_adapter'] ?? 'file')); $data['using_backup'] = !empty($cache_info['active']['using_backup']);