summaryrefslogtreecommitdiffstats
path: root/application/models/Person.php
diff options
context:
space:
mode:
authormichael pereira2011-03-02 15:59:10 +0100
committermichael pereira2011-03-02 15:59:10 +0100
commitc84ff4a181213d5d9573db960c3fbfdc6f641dd3 (patch)
treefb5b855b7e164153d2146f23add37bc307a4dea8 /application/models/Person.php
parentDie Models geƤndert da kein return der Objekte angegeben war && FilterContro... (diff)
downloadpbs2-c84ff4a181213d5d9573db960c3fbfdc6f641dd3.tar.gz
pbs2-c84ff4a181213d5d9573db960c3fbfdc6f641dd3.tar.xz
pbs2-c84ff4a181213d5d9573db960c3fbfdc6f641dd3.zip
Mapper gefixt
Diffstat (limited to 'application/models/Person.php')
-rw-r--r--application/models/Person.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/Person.php b/application/models/Person.php
index 8eb96bb..9a44657 100644
--- a/application/models/Person.php
+++ b/application/models/Person.php
@@ -15,6 +15,7 @@ class Application_Model_Person
protected $_email;
protected $_login;
protected $_password;
+ protected $_password_salt;
public function __construct(array $options = null)
{
@@ -171,5 +172,14 @@ class Application_Model_Person
$this->_password = $_password;
return $this;
}
+ public function setPasswordSalt($_password_salt)
+ {
+ $this->_password_salt = $_password_salt;
+ return $this;
+ }
+ public function getPasswordSalt($_password_salt)
+ {
+ return $this->_password_salt;
+ }
}