From 7601e10b6a99fbadf593cf4df18e914c96de93f0 Mon Sep 17 00:00:00 2001
From: Mikael Nordfeldth <mmn@hethane.se>
Date: Wed, 22 Apr 2015 20:57:05 +0200
Subject: [PATCH] getFullname function on Profile class

No need to fix it for User since we shouldn't use that mostly.
---
 classes/Profile.php | 5 +++++
 1 file changed, 5 insertions(+)

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;
-- 
2.39.5