diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2011-08-11 17:49:36 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2011-08-11 17:49:36 +0200 |
commit | aa582ec43a9060f5f9fba6540d1ea4e24bc70330 (patch) | |
tree | aefed6544e55ccd07b9367c523859387c97d00d3 /lib/user.php | |
parent | 4a334f0d12c70196cb2e09515c7580544e896d98 (diff) | |
download | nextcloud-server-aa582ec43a9060f5f9fba6540d1ea4e24bc70330.tar.gz nextcloud-server-aa582ec43a9060f5f9fba6540d1ea4e24bc70330.zip |
more work on encryption
Diffstat (limited to 'lib/user.php')
-rw-r--r-- | lib/user.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/user.php b/lib/user.php index a2ede8234be..e53ba145c9e 100644 --- a/lib/user.php +++ b/lib/user.php @@ -193,6 +193,7 @@ class OC_User { if( $run && self::checkPassword( $uid, $password )){ $_SESSION['user_id'] = $uid; + OC_Crypt::init($uid,$password); OC_Hook::emit( "OC_User", "post_login", array( "uid" => $uid )); return true; } |