From 9f576ab02af0578265134c1e728b6703f14d5a7d Mon Sep 17 00:00:00 2001 From: Sujith H Date: Fri, 27 Oct 2017 09:16:35 +0530 Subject: [PATCH] Fix the missing argument to DecryptAll logger is the last argument to DecryptAll which was missing when DecryptAll is called. This change fixes the same. Signed-off-by: Sujith H --- lib/Command/RecreateMasterKey.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Command/RecreateMasterKey.php b/lib/Command/RecreateMasterKey.php index 1da833dc..23477a5c 100644 --- a/lib/Command/RecreateMasterKey.php +++ b/lib/Command/RecreateMasterKey.php @@ -240,7 +240,7 @@ protected function execute(InputInterface $input, OutputInterface $output) { } protected function decryptAllUsers(InputInterface $input, OutputInterface $output) { - $this->decryptAll = new DecryptAll($this->encryptionManager, $this->userManager, $this->rootView); + $this->decryptAll = new DecryptAll($this->encryptionManager, $this->userManager, $this->rootView, $this->logger); $this->decryptAll->decryptAll($input,$output); }