diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-10-03 10:04:59 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-10-03 10:04:59 +0200 |
commit | 7006db7a2dd68ec7f7ca3a24d9afa656056f9d8c (patch) | |
tree | aceb567afda7467738ab6b693dc9595a40ac7f2f /phpBB/config | |
parent | 93531e7fb0df7d9cd2de04ca06aa9eb6a847a1c4 (diff) | |
parent | 49ce2c13b26e358b4ccef440094a8fa4b6b9afd7 (diff) | |
download | forums-7006db7a2dd68ec7f7ca3a24d9afa656056f9d8c.tar forums-7006db7a2dd68ec7f7ca3a24d9afa656056f9d8c.tar.gz forums-7006db7a2dd68ec7f7ca3a24d9afa656056f9d8c.tar.bz2 forums-7006db7a2dd68ec7f7ca3a24d9afa656056f9d8c.tar.xz forums-7006db7a2dd68ec7f7ca3a24d9afa656056f9d8c.zip |
Merge branch 'develop' of https://github.com/phpbb/phpbb3 into feature/passwords
Conflicts:
phpBB/includes/functions.php
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/services.yml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml index 7a0a215262..1af0457331 100644 --- a/phpBB/config/services.yml +++ b/phpBB/config/services.yml @@ -170,11 +170,6 @@ services: filesystem: class: phpbb\filesystem - arguments: - - @symfony_request - - %core.root_path% - - %core.php_ext% - - %core.adm_relative_path% groupposition.legend: class: phpbb\groupposition\legend @@ -252,6 +247,15 @@ services: - %tables.notifications% - %tables.user_notifications% + path_helper: + class: phpbb\path_helper + arguments: + - @symfony_request + - @filesystem + - %core.root_path% + - %core.php_ext% + - %core.adm_relative_path% + php_ini: class: phpbb\php\ini @@ -266,7 +270,7 @@ services: template: class: phpbb\template\twig\twig arguments: - - @filesystem + - @path_helper - @config - @user - @template_context |