Solving bug #478 - cFData is null and not contains an empty array - refs #478

This commit is contained in:
Marc Ducobu 2015-04-08 16:48:48 +02:00
parent a6bac03242
commit 9be5757623

View File

@ -508,6 +508,9 @@ class Person {
*/
public function getCFData()
{
if ($this->cFData === null) {
$this->cFData = [];
}
return $this->cFData;
}