소스 검색

added camelization to getValue() again which got accidentally removed by last change

Christian Raue 14 년 전
부모
커밋
1b4caf77ba
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Admin/BaseFieldDescription.php

+ 1 - 1
Admin/BaseFieldDescription.php

@@ -328,7 +328,7 @@ abstract class BaseFieldDescription implements FieldDescriptionInterface
      */
     public function getValue($object)
     {
-        $camelizedFieldName = $this->getFieldName();
+        $camelizedFieldName = self::camelize($this->getFieldName());
         $getters = array(
             'get'.$camelizedFieldName,
             'is'.$camelizedFieldName,