소스 검색

fixed getter call for properties with uppercase letters

Robert Gruendler 13 년 전
부모
커밋
916ef90cb2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/Gedmo/Translator/TranslationProxy.php

+ 1 - 1
lib/Gedmo/Translator/TranslationProxy.php

@@ -49,7 +49,7 @@ class TranslationProxy
     {
         $matches = array();
         if (preg_match('/^(set|get)(.*)$/', $method, $matches)) {
-            $property = strtolower($matches[2]);
+            $property = lcfirst($matches[2]);
 
             if (in_array($property, $this->properties)) {
                 switch ($matches[1]) {