diff options
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/avatar.yml | 1 | ||||
-rw-r--r-- | phpBB/config/cron.yml | 1 | ||||
-rw-r--r-- | phpBB/config/event.yml | 7 |
3 files changed, 9 insertions, 0 deletions
diff --git a/phpBB/config/avatar.yml b/phpBB/config/avatar.yml index 5292489715..b0dca137b0 100644 --- a/phpBB/config/avatar.yml +++ b/phpBB/config/avatar.yml @@ -60,6 +60,7 @@ services: - %core.php_ext% - @path_helper - @mimetype.guesser + - @dispatcher - @cache.driver calls: - [set_name, [avatar.driver.upload]] diff --git a/phpBB/config/cron.yml b/phpBB/config/cron.yml index 7a90c39733..c5b88df181 100644 --- a/phpBB/config/cron.yml +++ b/phpBB/config/cron.yml @@ -120,6 +120,7 @@ services: - @config - @dbal.conn - @user + - @dispatcher calls: - [set_name, [cron.task.core.tidy_search]] tags: diff --git a/phpBB/config/event.yml b/phpBB/config/event.yml index 599b3cbb40..7bc4cb0042 100644 --- a/phpBB/config/event.yml +++ b/phpBB/config/event.yml @@ -32,3 +32,10 @@ services: class: phpbb\event\kernel_terminate_subscriber tags: - { name: kernel.event_subscriber } + + symfony_response_listener: + class: Symfony\Component\HttpKernel\EventListener\ResponseListener + arguments: + - UTF-8 + tags: + - { name: kernel.event_subscriber } |