From b554d2069fee8330a01c64848cea9408f67deddb Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Mon, 19 Mar 2007 02:56:43 +0000 Subject: [PATCH] Give cache files a more lenient permission. git-svn-id: http://htmlpurifier.org/svnroot@858 48356398-32a2-884e-a903-53898d9a118a --- XHTMLCompiler/Page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XHTMLCompiler/Page.php b/XHTMLCompiler/Page.php index 9f31bce..e78f5b6 100644 --- a/XHTMLCompiler/Page.php +++ b/XHTMLCompiler/Page.php @@ -170,7 +170,7 @@ class XHTMLCompiler_Page if (empty($contents)) return ''; // don't write, probably an error $contents .= ''; $this->cache->write($contents); - $this->cache->chmod(0644); + $this->cache->chmod(0664); return $contents; } -- 2.11.4.GIT