mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 11:56:50 +00:00
fixed typo
git-svn-id: http://svn.twig-project.org/trunk@14 93ef8e89-cb99-4229-a87c-7fa0fa45744b
This commit is contained in:
+1
-1
@@ -39,7 +39,7 @@ abstract class Twig_Loader implements Twig_LoaderInterface
|
||||
*/
|
||||
public function __construct($cache = null, $autoReload = true)
|
||||
{
|
||||
$this->cache = null === $this->cache ? sys_get_temp_dir().DIRECTORY_SEPARATOR.md5(dirname(__FILE__)) : $cache;
|
||||
$this->cache = null === $cache ? sys_get_temp_dir().DIRECTORY_SEPARATOR.md5(dirname(__FILE__)) : $cache;
|
||||
|
||||
if (false !== $this->cache && !is_dir($this->cache))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user