diff --git a/src/Charcoal/Model/AbstractModel.php b/src/Charcoal/Model/AbstractModel.php index 5f455dcd..a272466a 100644 --- a/src/Charcoal/Model/AbstractModel.php +++ b/src/Charcoal/Model/AbstractModel.php @@ -307,7 +307,7 @@ public function flatData() */ public function propertyValue($propertyIdent) { - $getter = $this->getter($propertyIdent); + $getter = $this->camelize($propertyIdent); $method = [ $this, $getter ]; if (is_callable($method)) {