mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-16 04:16:28 +00:00
fixed typo
git-svn-id: http://svn.twig-project.org/trunk@12 93ef8e89-cb99-4229-a87c-7fa0fa45744b
This commit is contained in:
+1
-1
@@ -75,7 +75,7 @@ abstract class Twig_Loader implements Twig_LoaderInterface
|
||||
}
|
||||
|
||||
$cache = $this->getCacheFilename($name);
|
||||
if (!file_exists($cache) || false === $mtime || ($this->autoReload && filemtime($cache) < $mtime))
|
||||
if (!file_exists($cache) || false === $mtime || ($this->autoReload && (filemtime($cache) < $mtime)))
|
||||
{
|
||||
$fp = @fopen($cache, 'wb');
|
||||
if (!$fp)
|
||||
|
||||
Reference in New Issue
Block a user