From 96b3b5c72af37cf0d3f445cee2519e2ac9c6328f Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 23 Jan 2012 05:39:47 +0000 Subject: [PATCH] subfolders in data/ --- core/util.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/util.inc.php b/core/util.inc.php index 421d0e9d..660bb001 100644 --- a/core/util.inc.php +++ b/core/util.inc.php @@ -1049,7 +1049,7 @@ function _start_cache() { $_cache_hash = md5($_SERVER["QUERY_STRING"]); $ab = substr($_cache_hash, 0, 2); $cd = substr($_cache_hash, 2, 2); - $_cache_filename = "data/$ab/$cd/$_cache_hash"; + $_cache_filename = "data/http_cache/$ab/$cd/$_cache_hash"; if(!file_exists(dirname($_cache_filename))) { mkdir(dirname($_cache_filename), 0750, true);