getFullname function on Profile class

No need to fix it for User since we shouldn't use that mostly.
This commit is contained in:
Mikael Nordfeldth 2015-04-22 20:57:05 +02:00
parent d7d96806a4
commit 7601e10b6a
1 changed files with 5 additions and 0 deletions

View File

@ -1380,6 +1380,11 @@ class Profile extends Managed_DataObject
return $this->nickname;
}
public function getFullname()
{
return $this->fullname;
}
public function getDescription()
{
return $this->bio;