From 48305799eba4d0da3d89a3734fcafd77d3a73544 Mon Sep 17 00:00:00 2001 From: fabien Date: Sat, 10 Oct 2009 08:01:27 +0000 Subject: [PATCH] fixed typo git-svn-id: http://svn.twig-project.org/trunk@12 93ef8e89-cb99-4229-a87c-7fa0fa45744b --- lib/Twig/Loader.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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) -- 1.7.2.5