aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-01-10 23:00:37 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-01-10 23:00:37 +0100
commitc6658396362f56e1f6605b032bbb7d12275e4749 (patch)
tree6e9eeaac298c3d622da97e288b2f097f4b37318c /phpBB/includes
parent2471b19d73c38359ed70a7c9e3a82a297946c5b8 (diff)
downloadforums-c6658396362f56e1f6605b032bbb7d12275e4749.tar
forums-c6658396362f56e1f6605b032bbb7d12275e4749.tar.gz
forums-c6658396362f56e1f6605b032bbb7d12275e4749.tar.bz2
forums-c6658396362f56e1f6605b032bbb7d12275e4749.tar.xz
forums-c6658396362f56e1f6605b032bbb7d12275e4749.zip
[ticket/11201] Remove global use from admin class
PHPBB3-11201
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/acp_profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_profile.php b/phpBB/includes/acp/acp_profile.php
index 510239a837..3c2e6448ce 100644
--- a/phpBB/includes/acp/acp_profile.php
+++ b/phpBB/includes/acp/acp_profile.php
@@ -849,7 +849,7 @@ class acp_profile
// Build options based on profile type
$function = 'get_' . $cp->profile_types[$field_type] . '_options';
- $options = $cp->$function();
+ $options = $cp->$function($this->lang_defs);
foreach ($options as $num => $option_ary)
{