diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-01-15 22:07:01 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-01-15 22:07:01 +0100 |
commit | aeeb85e1cfb9c6a54fc74942e42bc602d2a108a1 (patch) | |
tree | 3cd40dc3e7c61d30f42b52138351bae54870ee2c /phpBB/config/avatars.yml | |
parent | 7402add107591ba675bc27248825b7bc9daedee4 (diff) | |
download | forums-aeeb85e1cfb9c6a54fc74942e42bc602d2a108a1.tar forums-aeeb85e1cfb9c6a54fc74942e42bc602d2a108a1.tar.gz forums-aeeb85e1cfb9c6a54fc74942e42bc602d2a108a1.tar.bz2 forums-aeeb85e1cfb9c6a54fc74942e42bc602d2a108a1.tar.xz forums-aeeb85e1cfb9c6a54fc74942e42bc602d2a108a1.zip |
[feature/avatars] Remove the obsolete request argument for avatar drivers
This should have been removed earlier when the phpbb_request object was
dropped from the arguments to the avatar drivers.
PHPBB3-10018
Diffstat (limited to 'phpBB/config/avatars.yml')
-rw-r--r-- | phpBB/config/avatars.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/phpBB/config/avatars.yml b/phpBB/config/avatars.yml index e6106038f5..8eef0f837f 100644 --- a/phpBB/config/avatars.yml +++ b/phpBB/config/avatars.yml @@ -3,7 +3,6 @@ services: class: phpbb_avatar_driver_gravatar arguments: - @config - - @request - %core.root_path% - .%core.php_ext% - @cache.driver @@ -16,7 +15,6 @@ services: class: phpbb_avatar_driver_local arguments: - @config - - @request - %core.root_path% - .%core.php_ext% - @cache.driver @@ -29,7 +27,6 @@ services: class: phpbb_avatar_driver_remote arguments: - @config - - @request - %core.root_path% - .%core.php_ext% - @cache.driver @@ -42,7 +39,6 @@ services: class: phpbb_avatar_driver_upload arguments: - @config - - @request - %core.root_path% - .%core.php_ext% - @cache.driver |