aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/crypto/driver/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/crypto/driver/base.php')
-rw-r--r--phpBB/includes/crypto/driver/base.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/crypto/driver/base.php b/phpBB/includes/crypto/driver/base.php
index c913767989..c134122174 100644
--- a/phpBB/includes/crypto/driver/base.php
+++ b/phpBB/includes/crypto/driver/base.php
@@ -23,6 +23,9 @@ abstract class phpbb_crypto_driver_base implements phpbb_crypto_driver_interface
/** @var phpbb_config */
protected $config;
+ /** @var phpbb_crypto_driver_helper */
+ protected $helper;
+
/**
* Constructor of crypto driver object
*
@@ -31,6 +34,7 @@ abstract class phpbb_crypto_driver_base implements phpbb_crypto_driver_interface
public function __construct(phpbb_config $config)
{
$this->config = $config;
+ $this->helper = new phpbb_crypto_driver_helper($this);
}
/**