fixed default cache umask (closes #76)

This commit is contained in:
Fabien Potencier
2010-06-28 12:39:10 +02:00
parent ad052d8ed2
commit e179192911
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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
+1 -1
View 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);
}
}