From 5b3212f8a5736e99cd5d2fba950378e142007fba Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 1 Nov 2025 19:36:17 +0100 Subject: [PATCH] Fix foc config setting --- application/models/Dxcluster_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Dxcluster_model.php b/application/models/Dxcluster_model.php index 6f3af63c7..2a891b675 100644 --- a/application/models/Dxcluster_model.php +++ b/application/models/Dxcluster_model.php @@ -35,7 +35,7 @@ class Dxcluster_model extends CI_Model { $this->load->helper(array('psr4_autoloader')); // Check if file caching is enabled in config - $cache_enabled = $this->config->item('enable_dxcluster_file_cache') === false; + $cache_enabled = $this->config->item('enable_dxcluster_file_cache') === true; // Only load cache driver if caching is enabled if ($cache_enabled) {