From: Florent Bruneau Date: Thu, 29 Jan 2009 21:52:46 +0000 (+0100) Subject: Fix firstName() and lastName(). X-Git-Tag: xorg/1.0.0~332^2~403 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=08c91036c98078a4253833b20afcc9ebe3b7cfa3;p=platal.git Fix firstName() and lastName(). Signed-off-by: Florent Bruneau --- 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()