summaryrefslogtreecommitdiffstats
path: root/apps/encryption/hooks
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-04-02 13:12:05 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-07 13:30:30 +0200
commit8cf9b423d5b2d66694f5772bc5310d088cb466c1 (patch)
tree5da6d8471a48e00736f8af4e7b89c40abe5b66d1 /apps/encryption/hooks
parente8e5bd61aedb7a3f6105b3184b62a91fa81ce382 (diff)
downloadnextcloud-server-8cf9b423d5b2d66694f5772bc5310d088cb466c1.tar.gz
nextcloud-server-8cf9b423d5b2d66694f5772bc5310d088cb466c1.zip
cleanup
Diffstat (limited to 'apps/encryption/hooks')
-rw-r--r--apps/encryption/hooks/userhooks.php6
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');
}
}
}