summaryrefslogtreecommitdiffstats
path: root/application/models/Person.php
diff options
context:
space:
mode:
authormichael pereira2011-04-25 11:40:40 +0200
committermichael pereira2011-04-25 11:40:40 +0200
commite2d929c54a0d951c9bae51df7df5178bf9f0066f (patch)
tree142a271540cb0467350c91d1818340b0b09c8b7f /application/models/Person.php
parentauto-close removed, handled by fbgui now (diff)
downloadpbs2-e2d929c54a0d951c9bae51df7df5178bf9f0066f.tar.gz
pbs2-e2d929c54a0d951c9bae51df7df5178bf9f0066f.tar.xz
pbs2-e2d929c54a0d951c9bae51df7df5178bf9f0066f.zip
config fertig
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 2312f65..4d4a000 100644
--- a/application/models/Person.php
+++ b/application/models/Person.php
@@ -26,6 +26,7 @@ class Application_Model_Person
protected $_login;
protected $_password;
protected $_password_salt;
+ protected $_loginpassword;
protected $_suspended;
public function __construct(array $options = null)
@@ -185,6 +186,15 @@ class Application_Model_Person
$this->_password = $_password;
return $this;
}
+ public function getLoginPassword()
+ {
+ return $this->_loginpassword;
+ }
+ public function setLoginPassword($_loginpassword)
+ {
+ $this->_loginpassword = $_loginpassword;
+ return $this;
+ }
public function setPasswordSalt($_password_salt)
{
$this->_password_salt = $_password_salt;