From 176aec266a7effcec7682ac94d754a2b84465c6c Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sun, 22 May 2011 01:31:29 +1000 Subject: [PATCH] bug fix for writing to root "/" --- inc/functions.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index de4833408..cba4cc7f0 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -222,7 +222,6 @@ global $config; $uri = (str_replace('\\', '/', dirname($_SERVER['REQUEST_URI'])) == '/' ? '/' : str_replace('\\', '/', dirname($_SERVER['REQUEST_URI'])) . '/') . $uri; - foreach($config['purge'] as &$purge) { $host = $purge[0]; $port = $purge[1]; @@ -274,7 +273,13 @@ // Purge cache if(basename($path) == $config['file_index']) { // Index file (/index.html); purge "/" as well - purge(dirname($path) . '/'); + $uri = dirname($path); + // root + if($uri == '.') + $uri = ''; + else + $uri .= '/'; + purge($uri); } purge($path); }