diff options
author | Matt Friedman <maf675@gmail.com> | 2016-12-18 01:28:51 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-12-18 01:28:51 -0800 |
commit | b4748a5d1ee31084da7e78f8ffaf5b036f2e5314 (patch) | |
tree | eb815b485b6360235bbc04413b2f682215cc1efe /phpBB/config/default | |
parent | 544c7c4e0864df7ad1748c21b92a146e84308a06 (diff) | |
download | forums-b4748a5d1ee31084da7e78f8ffaf5b036f2e5314.tar forums-b4748a5d1ee31084da7e78f8ffaf5b036f2e5314.tar.gz forums-b4748a5d1ee31084da7e78f8ffaf5b036f2e5314.tar.bz2 forums-b4748a5d1ee31084da7e78f8ffaf5b036f2e5314.tar.xz forums-b4748a5d1ee31084da7e78f8ffaf5b036f2e5314.zip |
[ticket/14925] Set reparser names in service definitions
PHPBB3-14925
Diffstat (limited to 'phpBB/config/default')
-rw-r--r-- | phpBB/config/default/container/services_text_reparser.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/phpBB/config/default/container/services_text_reparser.yml b/phpBB/config/default/container/services_text_reparser.yml index 6b0353cf5b..4bc49f5765 100644 --- a/phpBB/config/default/container/services_text_reparser.yml +++ b/phpBB/config/default/container/services_text_reparser.yml @@ -24,6 +24,8 @@ services: class: phpbb\textreparser\plugins\contact_admin_info arguments: - '@config_text' + calls: + - [set_name, [contact_admin_info]] tags: - { name: text_reparser.plugin } @@ -32,6 +34,8 @@ services: arguments: - '@dbal.conn' - '%tables.forums%' + calls: + - [set_name, [forum_description]] tags: - { name: text_reparser.plugin } @@ -40,6 +44,8 @@ services: arguments: - '@dbal.conn' - '%tables.forums%' + calls: + - [set_name, [forum_rules]] tags: - { name: text_reparser.plugin } @@ -48,6 +54,8 @@ services: arguments: - '@dbal.conn' - '%tables.groups%' + calls: + - [set_name, [group_description]] tags: - { name: text_reparser.plugin } @@ -56,6 +64,8 @@ services: arguments: - '@dbal.conn' - '%tables.privmsgs%' + calls: + - [set_name, [pm_text]] tags: - { name: text_reparser.plugin } @@ -63,6 +73,8 @@ services: class: phpbb\textreparser\plugins\poll_option arguments: - '@dbal.conn' + calls: + - [set_name, [poll_option]] tags: - { name: text_reparser.plugin } @@ -71,6 +83,8 @@ services: arguments: - '@dbal.conn' - '%tables.topics%' + calls: + - [set_name, [poll_title]] tags: - { name: text_reparser.plugin } @@ -79,6 +93,8 @@ services: arguments: - '@dbal.conn' - '%tables.posts%' + calls: + - [set_name, [post_text]] tags: - { name: text_reparser.plugin } @@ -87,5 +103,7 @@ services: arguments: - '@dbal.conn' - '%tables.users%' + calls: + - [set_name, [user_signature]] tags: - { name: text_reparser.plugin } |