]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
getFullname function on Profile class
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 22 Apr 2015 18:57:05 +0000 (20:57 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 22 Apr 2015 18:57:05 +0000 (20:57 +0200)
No need to fix it for User since we shouldn't use that mostly.

classes/Profile.php

index a944d5b4d23f5768c6d4ffcd4ade2b21b61b79a8..480606890d2032e3b53a5564ccba028c6c5b5e7a 100644 (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;