From 08c91036c98078a4253833b20afcc9ebe3b7cfa3 Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Thu, 29 Jan 2009 22:52:46 +0100 Subject: [PATCH] Fix firstName() and lastName(). Signed-off-by: Florent Bruneau --- classes/profile.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/profile.php b/classes/profile.php index 025521f..d224585 100644 --- a/classes/profile.php +++ b/classes/profile.php @@ -112,12 +112,12 @@ class Profile public function firstName() { - return $this->first_name; + return $this->firstname; } public function lastName() { - return $this->last_name; + return $this->lastname; } public function isFemale() -- 2.1.4