From 2efa6f32f3585e392c30e46e811dfb52d65143f2 Mon Sep 17 00:00:00 2001 From: Danang Probo Sayekti Date: Sat, 29 Aug 2015 11:44:02 +0700 Subject: [PATCH] Fixes --- system/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/includes/functions.php b/system/includes/functions.php index 786a73e..295d5c4 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -2383,7 +2383,7 @@ EOF; // File cache function file_cache($request) { - if (config('cache.off')) return; + if (config('cache.off') == 'true') return; $c = str_replace('/', '#', str_replace('?', '~', $request)); $cachefile = 'cache/page/' . $c . '.cache';