From: fabien Date: Sat, 10 Oct 2009 08:01:27 +0000 (+0000) Subject: fixed typo X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=48305799eba4d0da3d89a3734fcafd77d3a73544;p=web%2Fkonrad%2Ftwig.git fixed typo git-svn-id: http://svn.twig-project.org/trunk@12 93ef8e89-cb99-4229-a87c-7fa0fa45744b --- diff --git a/lib/Twig/Loader.php b/lib/Twig/Loader.php index 0011239..3e2eb56 100644 --- a/lib/Twig/Loader.php +++ b/lib/Twig/Loader.php @@ -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)