fixed default cache umask (closes #76)
authorFabien Potencier <fabien.potencier@gmail.com>
Mon, 28 Jun 2010 10:39:10 +0000 (12:39 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 28 Jun 2010 10:39:10 +0000 (12:39 +0200)
CHANGELOG
lib/Twig/Environment.php

index 300514e..e7f2ffa 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,6 @@
 * 0.9.8
 
+ * fixed default cache umask
  * removed Twig_Template instances from the debug tag output
  * fixed objects with __isset() defined
  * fixed set tag when used with a capture
index f8244cd..9945b57 100644 (file)
@@ -147,7 +147,7 @@ class Twig_Environment
         $this->cache = $cache;
 
         if ($this->cache && !is_dir($this->cache)) {
-            mkdir($this->cache, 0755, true);
+            mkdir($this->cache, 0777, true);
         }
     }