fixed typo
authorFabien Potencier <fabien.potencier@gmail.com>
Thu, 6 Jan 2011 07:51:56 +0000 (08:51 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Thu, 6 Jan 2011 07:51:56 +0000 (08:51 +0100)
lib/Twig/Environment.php

index 4100640..52132b4 100644 (file)
@@ -222,11 +222,7 @@ class Twig_Environment
       */
     public function setCache($cache)
     {
-        if (!$this->cache) {
-            $this->cache = false;
-        }
-
-        $this->cache = $cache;
+        $this->cache = $cache ? $cache : false;
     }
 
     /**