Skip to content

Commit

Permalink
added camelization to getValue() again which got accidentally removed…
Browse files Browse the repository at this point in the history
… by last change
  • Loading branch information
craue committed May 25, 2011
1 parent 99d979c commit 1b4caf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Admin/BaseFieldDescription.php
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ public function getAssociationAdmin()
*/
public function getValue($object)
{
$camelizedFieldName = $this->getFieldName();
$camelizedFieldName = self::camelize($this->getFieldName());
$getters = array(
'get'.$camelizedFieldName,
'is'.$camelizedFieldName,
Expand Down

0 comments on commit 1b4caf7

Please sign in to comment.