fix duplicate login behavior if user not setup

remotes/origin/stable6
Florin Peter 2013-05-01 02:01:16 +07:00
parent 9f8f052f0d
commit 06a5cf70f7
1 changed files with 3 additions and 1 deletions

@ -52,7 +52,9 @@ class Hooks {
\OC_Log::write( 'Encryption library', 'User account "' . $params['uid'] . '" is not ready for encryption; configuration started', \OC_Log::DEBUG );
return $util->setupServerSide( $params['password'] );
if(!$util->setupServerSide( $params['password'] )) {
return false;
}
}