diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-10-29 01:48:52 +0100 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-11-03 16:35:53 +0100 |
commit | 2016550a32168ee5fcf11bfdd367ce48fbcf88b1 (patch) | |
tree | 7f38f6ef56e624f917d2e568fc143e463db0c7b4 /phpBB/config/default/container/services_text_reparser.yml | |
parent | 8b7f711a184220928f42d5ec079af18d259981d0 (diff) | |
download | forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.gz forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.bz2 forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.xz forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.zip |
[ticket/14264] Don't use constants as return values
This will prevent BC breaking in the future if we decide to
get rid of constants.
PHPBB3-14264
Diffstat (limited to 'phpBB/config/default/container/services_text_reparser.yml')
-rw-r--r-- | phpBB/config/default/container/services_text_reparser.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/config/default/container/services_text_reparser.yml b/phpBB/config/default/container/services_text_reparser.yml index 5d54e8dc82..dd15b9f09a 100644 --- a/phpBB/config/default/container/services_text_reparser.yml +++ b/phpBB/config/default/container/services_text_reparser.yml @@ -17,6 +17,7 @@ services: class: phpbb\textreparser\plugins\forum_description arguments: - @dbal.conn + - %tables.forums% tags: - { name: text_reparser.plugin } @@ -24,6 +25,7 @@ services: class: phpbb\textreparser\plugins\forum_rules arguments: - @dbal.conn + - %tables.forums% tags: - { name: text_reparser.plugin } @@ -31,6 +33,7 @@ services: class: phpbb\textreparser\plugins\group_description arguments: - @dbal.conn + - %tables.groups% tags: - { name: text_reparser.plugin } @@ -38,6 +41,7 @@ services: class: phpbb\textreparser\plugins\pm_text arguments: - @dbal.conn + - %tables.privmsgs% tags: - { name: text_reparser.plugin } @@ -52,6 +56,7 @@ services: class: phpbb\textreparser\plugins\poll_title arguments: - @dbal.conn + - %tables.topics% tags: - { name: text_reparser.plugin } @@ -59,6 +64,7 @@ services: class: phpbb\textreparser\plugins\post_text arguments: - @dbal.conn + - %tables.posts% tags: - { name: text_reparser.plugin } @@ -66,5 +72,6 @@ services: class: phpbb\textreparser\plugins\user_signature arguments: - @dbal.conn + - %tables.users% tags: - { name: text_reparser.plugin } |