summaryrefslogtreecommitdiff
path: root/inc/io.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/io.php')
-rw-r--r--inc/io.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/io.php b/inc/io.php
index ceb747ed9..2d5e8e585 100644
--- a/inc/io.php
+++ b/inc/io.php
@@ -21,9 +21,9 @@ function io_cacheParse($file){
global $CACHEGROUP;
global $parser; //we read parser options
$parsed = '';
- $cache = $conf['datadir'].'/.cache/';
+ $cache = $conf['datadir'].'/_cache/';
$cache .= md5($file.$_SERVER['HTTP_HOST'].$_SERVER['SERVER_PORT'].$CACHEGROUP);
- $purge = $conf['datadir'].'/.cache/purgefile';
+ $purge = $conf['datadir'].'/_cache/purgefile';
// check if cache can be used
$cachetime = @filemtime($cache);