Fixed typo.

This commit is contained in:
Franck Allimant
2014-06-10 15:56:38 +02:00
parent 466f938cd5
commit f2770c5a2b

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();