diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-08-10 15:10:14 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-08-11 01:16:58 +0200 |
commit | fa2ac1f27126292a24aa33136b2d3a7f1832ea47 (patch) | |
tree | 2a40bf7908771f6d889718753c25f5b39c252873 /phpBB/config | |
parent | 76633544ee6084e61641ec423cd0480bb4b771c5 (diff) | |
download | forums-fa2ac1f27126292a24aa33136b2d3a7f1832ea47.tar forums-fa2ac1f27126292a24aa33136b2d3a7f1832ea47.tar.gz forums-fa2ac1f27126292a24aa33136b2d3a7f1832ea47.tar.bz2 forums-fa2ac1f27126292a24aa33136b2d3a7f1832ea47.tar.xz forums-fa2ac1f27126292a24aa33136b2d3a7f1832ea47.zip |
[ticket/11854] Use a set_name method instead of overriding get_service_name
PHPBB3-11854
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/captcha.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/config/captcha.yml b/phpBB/config/captcha.yml index 15d6a4ce3d..bca37767af 100644 --- a/phpBB/config/captcha.yml +++ b/phpBB/config/captcha.yml @@ -20,18 +20,24 @@ services: core.captcha.plugins.gd: class: phpbb\captcha\plugins\gd scope: prototype # scope MUST be prototype for this to work! + calls: + - [set_name, [core.captcha.plugins.gd]] tags: - { name: captcha.plugins } core.captcha.plugins.gd_wave: class: phpbb\captcha\plugins\gd_wave scope: prototype # scope MUST be prototype for this to work! + calls: + - [set_name, [core.captcha.plugins.gd_wave]] tags: - { name: captcha.plugins } core.captcha.plugins.nogd: class: phpbb\captcha\plugins\nogd scope: prototype # scope MUST be prototype for this to work! + calls: + - [set_name, [core.captcha.plugins.nogd]] tags: - { name: captcha.plugins } @@ -42,11 +48,15 @@ services: - %tables.captcha_qa_questions% - %tables.captcha_qa_answers% - %tables.captcha_qa_confirm% + calls: + - [set_name, [core.captcha.plugins.qa]] tags: - { name: captcha.plugins } core.captcha.plugins.recaptcha: class: phpbb\captcha\plugins\recaptcha scope: prototype # scope MUST be prototype for this to work! + calls: + - [set_name, [core.captcha.plugins.recaptcha]] tags: - { name: captcha.plugins } |