From: Fabien Potencier Date: Tue, 6 Jul 2010 14:11:56 +0000 (+0200) Subject: fixed typos X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=288ba6789e2c37bae263ff02b0c13bcef4fa7b82;p=web%2Fkonrad%2Ftwig.git fixed typos --- diff --git a/lib/Twig/Template.php b/lib/Twig/Template.php index cdea823..7643758 100644 --- a/lib/Twig/Template.php +++ b/lib/Twig/Template.php @@ -116,7 +116,7 @@ abstract class Twig_Template implements Twig_TemplateInterface $class = get_class($object); if (!isset(self::$cache[$class])) { $r = new ReflectionClass($class); - self::$cache[$class] = array(); + self::$cache[$class] = array('methods' => array(), 'properties' => array()); foreach ($r->getMethods(ReflectionMethod::IS_PUBLIC) as $method) { self::$cache[$class]['methods'][strtolower($method->getName())] = true; } @@ -128,7 +128,7 @@ abstract class Twig_Template implements Twig_TemplateInterface // object property if (Twig_Node_Expression_GetAttr::TYPE_METHOD !== $type) { - if (isset(self::$cache[$class]['properties'][$item]) || isset($object->$item)) { + if (isset(self::$cache[$class]['properties'][strtolower($item)]) || isset($object->$item)) { if ($this->env->hasExtension('sandbox')) { $this->env->getExtension('sandbox')->checkPropertyAllowed($object, $item); }