fixed typo
authorFabien Potencier <fabien.potencier@gmail.com>
Mon, 28 Jun 2010 10:12:31 +0000 (12:12 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 28 Jun 2010 10:12:31 +0000 (12:12 +0200)
lib/Twig/Node.php

index 9aa4d34..58ce258 100644 (file)
@@ -130,7 +130,7 @@ class Twig_Node implements Twig_NodeInterface, ArrayAccess, Countable, IteratorA
      */
     public function offsetExists($name)
     {
-        return $this->attributes[$name];
+        return array_key_exists($name, $this->attributes);
     }
 
     /**