removed unneeded call to ucfirst

git-svn-id: http://svn.twig-project.org/trunk@195 93ef8e89-cb99-4229-a87c-7fa0fa45744b
This commit is contained in:
fabien
2009-12-22 07:18:45 +00:00
parent 5f049939ef
commit 8a9401ca74
+1 -1
View File
@@ -55,7 +55,7 @@ abstract class Twig_Resource
!is_object($object) ||
(
!method_exists($object, $method = $item) &&
!method_exists($object, $method = 'get'.ucfirst($item))
!method_exists($object, $method = 'get'.$item)
)
)
{