aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-12-06 16:33:12 +0100
committerJoas Schilling <nickvergessen@gmx.de>2012-12-06 16:33:12 +0100
commit2f490293e4b8d08d6c1008ef5ea324ae259d9993 (patch)
treed250c86a60bafc806fdc07d45b0bd18ffca3bd9e /phpBB/includes/ucp/info
parent[ticket/10679] Add new permission for changing profile field information (diff)
downloadphpbb-2f490293e4b8d08d6c1008ef5ea324ae259d9993.tar.gz
phpbb-2f490293e4b8d08d6c1008ef5ea324ae259d9993.tar.bz2
phpbb-2f490293e4b8d08d6c1008ef5ea324ae259d9993.zip
[ticket/10679] Use module_auth to limit access to the module
PHPBB3-10679
Diffstat (limited to 'phpBB/includes/ucp/info')
-rw-r--r--phpBB/includes/ucp/info/ucp_profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/info/ucp_profile.php b/phpBB/includes/ucp/info/ucp_profile.php
index 201216e9fd..3581a7f533 100644
--- a/phpBB/includes/ucp/info/ucp_profile.php
+++ b/phpBB/includes/ucp/info/ucp_profile.php
@@ -19,7 +19,7 @@ class ucp_profile_info
'title' => 'UCP_PROFILE',
'version' => '1.0.0',
'modes' => array(
- 'profile_info' => array('title' => 'UCP_PROFILE_PROFILE_INFO', 'auth' => '', 'cat' => array('UCP_PROFILE')),
+ 'profile_info' => array('title' => 'UCP_PROFILE_PROFILE_INFO', 'auth' => 'acl_u_chgprofileinfo', 'cat' => array('UCP_PROFILE')),
'signature' => array('title' => 'UCP_PROFILE_SIGNATURE', 'auth' => 'acl_u_sig', 'cat' => array('UCP_PROFILE')),
'avatar' => array('title' => 'UCP_PROFILE_AVATAR', 'auth' => 'cfg_allow_avatar && (cfg_allow_avatar_local || cfg_allow_avatar_remote || cfg_allow_avatar_upload || cfg_allow_avatar_remote_upload)', 'cat' => array('UCP_PROFILE')),
'reg_details' => array('title' => 'UCP_PROFILE_REG_DETAILS', 'auth' => '', 'cat' => array('UCP_PROFILE')),