From 9b24fda5cd1f6e85c536dc2bc3e5f1bbdef5b7c2 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Fri, 19 Jul 2013 20:49:24 +0200 Subject: [feature/passwords] Move files after namespacing changes PHPBB3-11610 --- phpBB/phpbb/crypto/driver/base.php | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 phpBB/phpbb/crypto/driver/base.php (limited to 'phpBB/phpbb/crypto/driver/base.php') diff --git a/phpBB/phpbb/crypto/driver/base.php b/phpBB/phpbb/crypto/driver/base.php new file mode 100644 index 0000000000..c134122174 --- /dev/null +++ b/phpBB/phpbb/crypto/driver/base.php @@ -0,0 +1,47 @@ +config = $config; + $this->helper = new phpbb_crypto_driver_helper($this); + } + + /** + * @inheritdoc + */ + public function is_supported() + { + return true; + } +} -- cgit v1.2.1