Browse Source

Fixes

pull/255/head v2.6.3
Danang Probo Sayekti 10 years ago
parent
commit
2efa6f32f3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      system/includes/functions.php

+ 1
- 1
system/includes/functions.php View File

@ -2383,7 +2383,7 @@ EOF;
// File cache // File cache
function file_cache($request) function file_cache($request)
{ {
if (config('cache.off')) return;
if (config('cache.off') == 'true') return;
$c = str_replace('/', '#', str_replace('?', '~', $request)); $c = str_replace('/', '#', str_replace('?', '~', $request));
$cachefile = 'cache/page/' . $c . '.cache'; $cachefile = 'cache/page/' . $c . '.cache';


Loading…
Cancel
Save