From: jeroendedauw Date: Wed, 16 Sep 2015 11:39:21 +0000 (+0200) Subject: Remove dead argument in EncryptedPassword.php X-Git-Tag: 1.31.0-rc.0~10001 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/bilan.php?a=commitdiff_plain;h=ce7912b22ad3308b2fa7f8b38cb6b5308ef25a42;p=lhc%2Fweb%2Fwiklou.git Remove dead argument in EncryptedPassword.php Change-Id: Ib0bb2733284262c233e6de4c7645f0b215690156 --- 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 );