diff options
| author | Björn Geiger | 2011-03-10 22:10:05 +0100 |
|---|---|---|
| committer | Björn Geiger | 2011-03-10 22:10:05 +0100 |
| commit | 7be4355001156faed62c71492234cba2c5bf96b4 (patch) | |
| tree | 55bb96227ee354cc0c6d6788dc45020bd43d8bba /application/models/Person.php | |
| parent | Merge branch 'master' of ssh://git.openslx.org/lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-7be4355001156faed62c71492234cba2c5bf96b4.tar.gz pbs2-7be4355001156faed62c71492234cba2c5bf96b4.tar.xz pbs2-7be4355001156faed62c71492234cba2c5bf96b4.zip | |
Benutzervewaltung, Gruppenverwaltung, Membershipverwaltung und noch leerer RoleController
Diffstat (limited to 'application/models/Person.php')
| -rw-r--r-- | application/models/Person.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/application/models/Person.php b/application/models/Person.php index b4545e9..aea348d 100644 --- a/application/models/Person.php +++ b/application/models/Person.php @@ -45,6 +45,8 @@ class Application_Model_Person public function setOptions(array $options) { $methods = get_class_methods($this); + $options['passwordSalt'] = $options['password_salt']; + unset($options['password_salt']); foreach ($options as $key => $value) { $method = 'set' . ucfirst($key); if (in_array($method, $methods)) { |
