fixed typo

git-svn-id: http://svn.twig-project.org/trunk@12 93ef8e89-cb99-4229-a87c-7fa0fa45744b
This commit is contained in:
fabien
2009-10-10 08:01:27 +00:00
parent 513e8220bc
commit 48305799eb
+1 -1
View File
@@ -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)