From: Mikael Nordfeldth Date: Wed, 22 Apr 2015 18:57:05 +0000 (+0200) Subject: getFullname function on Profile class X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7601e10b6a99fbadf593cf4df18e914c96de93f0;p=quix0rs-gnu-social.git getFullname function on Profile class No need to fix it for User since we shouldn't use that mostly. --- diff --git a/classes/Profile.php b/classes/Profile.php index a944d5b4d2..480606890d 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -1380,6 +1380,11 @@ class Profile extends Managed_DataObject return $this->nickname; } + public function getFullname() + { + return $this->fullname; + } + public function getDescription() { return $this->bio;