diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-02-05 18:43:56 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-02-05 18:43:56 +0000 |
commit | 983e4666c4a30df3c1b25c999000ad9c9ab5f82e (patch) | |
tree | ce26d1c33697331345e47dd3d6149002796ac255 /src/SemanticScuttle | |
parent | 3bdc88e37490530e7339c72c470df261fa2c76fb (diff) | |
download | semanticscuttle-983e4666c4a30df3c1b25c999000ad9c9ab5f82e.tar.gz semanticscuttle-983e4666c4a30df3c1b25c999000ad9c9ab5f82e.tar.bz2 |
use configurable password field instead of the hardcoded one
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@630 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'src/SemanticScuttle')
-rw-r--r-- | src/SemanticScuttle/Service/AuthUser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SemanticScuttle/Service/AuthUser.php b/src/SemanticScuttle/Service/AuthUser.php index 0fc0902..479b68a 100644 --- a/src/SemanticScuttle/Service/AuthUser.php +++ b/src/SemanticScuttle/Service/AuthUser.php @@ -169,7 +169,7 @@ class SemanticScuttle_Service_AuthUser extends SemanticScuttle_Service_User //we need to update the local database. $user = $this->getUserByUsername($username); $this->_updateuser( - $user['uId'], 'password', + $user['uId'], $this->getFieldName('password'), $this->sanitisePassword($password) ); |