aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-10-02 13:28:38 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-10-02 13:28:38 +0200
commit356f3eef0760f85b947cbffbf87918544e0f6c9d (patch)
tree4c6727bcf42d8cc036b362ba1c03d9511e093943 /phpBB/config
parent61e4c0f25172231d203799e4c3c5920e665ab4fa (diff)
downloadforums-356f3eef0760f85b947cbffbf87918544e0f6c9d.tar
forums-356f3eef0760f85b947cbffbf87918544e0f6c9d.tar.gz
forums-356f3eef0760f85b947cbffbf87918544e0f6c9d.tar.bz2
forums-356f3eef0760f85b947cbffbf87918544e0f6c9d.tar.xz
forums-356f3eef0760f85b947cbffbf87918544e0f6c9d.zip
[feature/passwords] Inject passwords manager into auth providers
The passwords manager will replace the old method of using the functions phpbb_hash() and phpbb_check_hash(). PHPBB3-11610
Diffstat (limited to 'phpBB/config')
-rw-r--r--phpBB/config/auth_providers.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/config/auth_providers.yml b/phpBB/config/auth_providers.yml
index e1c289334e..43648b4ad3 100644
--- a/phpBB/config/auth_providers.yml
+++ b/phpBB/config/auth_providers.yml
@@ -10,6 +10,7 @@ services:
arguments:
- @dbal.conn
- @config
+ - @passwords.manager
- @request
- @user
- %core.root_path%
@@ -21,6 +22,7 @@ services:
arguments:
- @dbal.conn
- @config
+ - @passwords.manager
- @request
- @user
- %core.root_path%
@@ -32,6 +34,7 @@ services:
arguments:
- @dbal.conn
- @config
+ - @passwords.manager
- @user
tags:
- { name: auth.provider }