Fixed typo.

This commit is contained in:
Franck Allimant
2014-06-10 15:56:38 +02:00
parent 71a6497edb
commit ff78e982cd

View File

@@ -402,7 +402,7 @@ class DataAccessFunctions extends AbstractSmartyPlugin
return $noGetterData[$keyAttribute];
}
$getter = sprintf("get%s", underscoreToCamelcase($attribute));
$getter = sprintf("get%s", $this->underscoreToCamelcase($attribute));
if (method_exists($data, $getter)) {
$return = $data->$getter();