mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-21 15:48:42 +00:00
fixed default cache umask (closes #76)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user