summaryrefslogtreecommitdiff
path: root/inc/io.php
diff options
context:
space:
mode:
authorjan <jan@jandecaluwe.com>2005-03-30 11:50:25 +0200
committerjan <jan@jandecaluwe.com>2005-03-30 11:50:25 +0200
commit9afe4dbf2e0907d016556ca89d08115ab99ab903 (patch)
treea556772e026a9480087080a5628214ccb88a83e9 /inc/io.php
parent2120eac47b2a91003bc0945a38c64de6e337b8f2 (diff)
downloadrpg-9afe4dbf2e0907d016556ca89d08115ab99ab903.tar.gz
rpg-9afe4dbf2e0907d016556ca89d08115ab99ab903.tar.bz2
Replace .* files by _*
darcs-hash:20050330095025-45605-5b5e82865c7fba8e88c43511ae4bf28ebf334d1b.gz
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);