diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-02 13:12:05 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:30 +0200 |
commit | 8cf9b423d5b2d66694f5772bc5310d088cb466c1 (patch) | |
tree | 5da6d8471a48e00736f8af4e7b89c40abe5b66d1 /apps/encryption/hooks | |
parent | e8e5bd61aedb7a3f6105b3184b62a91fa81ce382 (diff) | |
download | nextcloud-server-8cf9b423d5b2d66694f5772bc5310d088cb466c1.tar.gz nextcloud-server-8cf9b423d5b2d66694f5772bc5310d088cb466c1.zip |
cleanup
Diffstat (limited to 'apps/encryption/hooks')
-rw-r--r-- | apps/encryption/hooks/userhooks.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/encryption/hooks/userhooks.php b/apps/encryption/hooks/userhooks.php index 3b56135c36b..742c7d7580b 100644 --- a/apps/encryption/hooks/userhooks.php +++ b/apps/encryption/hooks/userhooks.php @@ -201,7 +201,7 @@ class UserHooks implements IHook { } } - /** + /** * Change a user's encryption passphrase * * @param array $params keys: uid, password @@ -225,7 +225,7 @@ class UserHooks implements IHook { $this->keyManager->setPrivateKey($this->user->getUser()->getUID(), $encryptedPrivateKey); } else { - $this->log->error('Encryption could not update users encryption password'); + $this->logger->error('Encryption could not update users encryption password'); } // NOTE: Session does not need to be updated as the @@ -266,7 +266,7 @@ class UserHooks implements IHook { $this->recovery->recoverUsersFiles($recoveryPassword, $user); } } else { - $this->log->error('Encryption Could not update users encryption password'); + $this->logger->error('Encryption Could not update users encryption password'); } } } |