aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/passwords/driver/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/passwords/driver/base.php')
-rw-r--r--phpBB/phpbb/passwords/driver/base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/passwords/driver/base.php b/phpBB/phpbb/passwords/driver/base.php
index 67cbe4decf..2984dafef7 100644
--- a/phpBB/phpbb/passwords/driver/base.php
+++ b/phpBB/phpbb/passwords/driver/base.php
@@ -34,10 +34,10 @@ abstract class phpbb_passwords_driver_base implements phpbb_passwords_driver_int
*
* @return string Hash prefix
*/
- public function __construct(phpbb_config $config)
+ public function __construct(phpbb_config $config, phpbb_passwords_driver_helper $helper)
{
$this->config = $config;
- $this->helper = new phpbb_passwords_driver_helper($this);
+ $this->helper = $helper;
}
/**