From ce7912b22ad3308b2fa7f8b38cb6b5308ef25a42 Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Wed, 16 Sep 2015 13:39:21 +0200 Subject: [PATCH] Remove dead argument in EncryptedPassword.php Change-Id: Ib0bb2733284262c233e6de4c7645f0b215690156 --- includes/password/EncryptedPassword.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/password/EncryptedPassword.php b/includes/password/EncryptedPassword.php index 39da32d1aa..6723793cc1 100644 --- a/includes/password/EncryptedPassword.php +++ b/includes/password/EncryptedPassword.php @@ -47,7 +47,7 @@ class EncryptedPassword extends ParameterizedPassword { $secret, 0, base64_decode( $this->args[0] ) ) ); } else { - $underlyingPassword = $this->factory->newFromType( $this->config['underlying'], $this->config ); + $underlyingPassword = $this->factory->newFromType( $this->config['underlying'] ); } $underlyingPassword->crypt( $password ); -- 2.20.1