diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-02 12:53:29 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-02 12:53:29 +0100 |
commit | 7bcbdfc1b15e0d014a22c76bb1eab6ccbc3d6dc7 (patch) | |
tree | c03b1da1ceb4082149602c21af5e50be795faeb4 /phpBB/config | |
parent | 514a59ffa7b55b30d9af7aadf8735d6c2dfd48e1 (diff) | |
download | forums-7bcbdfc1b15e0d014a22c76bb1eab6ccbc3d6dc7.tar forums-7bcbdfc1b15e0d014a22c76bb1eab6ccbc3d6dc7.tar.gz forums-7bcbdfc1b15e0d014a22c76bb1eab6ccbc3d6dc7.tar.bz2 forums-7bcbdfc1b15e0d014a22c76bb1eab6ccbc3d6dc7.tar.xz forums-7bcbdfc1b15e0d014a22c76bb1eab6ccbc3d6dc7.zip |
[ticket/11201] Rename profilefields class to manager
PHPBB3-11201
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/profilefields.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/config/profilefields.yml b/phpBB/config/profilefields.yml index 6c6ccedcea..8044bc8bc5 100644 --- a/phpBB/config/profilefields.yml +++ b/phpBB/config/profilefields.yml @@ -1,6 +1,6 @@ services: - profilefields: - class: \phpbb\profilefields\profilefields + profilefields.manager: + class: \phpbb\profilefields\manager arguments: - @auth - @dbal.conn @@ -30,7 +30,7 @@ services: class: \phpbb\profilefields\type\type_bool arguments: - @profilefields.lang_helper - - @profilefields + - @profilefields.manager - @request - @template - @user @@ -40,7 +40,7 @@ services: profilefields.type.date: class: \phpbb\profilefields\type\type_date arguments: - - @profilefields + - @profilefields.manager - @request - @template - @user @@ -51,7 +51,7 @@ services: class: \phpbb\profilefields\type\type_dropdown arguments: - @profilefields.lang_helper - - @profilefields + - @profilefields.manager - @request - @template - @user |