diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-10-29 13:58:24 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-10-29 14:58:25 -0400 |
commit | 5f5d395c625fe0257e7bca5d787424808f7649cc (patch) | |
tree | 98125d2b2017cdd55c3a035160c74bb71d7c317b /phpBB/includes/ucp/info/ucp_profile.php | |
parent | 88bd7292f16817d681264b9f06ff30c2a38c1da4 (diff) | |
download | forums-5f5d395c625fe0257e7bca5d787424808f7649cc.tar forums-5f5d395c625fe0257e7bca5d787424808f7649cc.tar.gz forums-5f5d395c625fe0257e7bca5d787424808f7649cc.tar.bz2 forums-5f5d395c625fe0257e7bca5d787424808f7649cc.tar.xz forums-5f5d395c625fe0257e7bca5d787424808f7649cc.zip |
[ticket/11158] Require acl_u_sig for ucp signature module.
PHPBB3-11158
Diffstat (limited to 'phpBB/includes/ucp/info/ucp_profile.php')
-rw-r--r-- | phpBB/includes/ucp/info/ucp_profile.php | 2 |
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 d19b80f4c0..4591776768 100644 --- a/phpBB/includes/ucp/info/ucp_profile.php +++ b/phpBB/includes/ucp/info/ucp_profile.php @@ -21,7 +21,7 @@ class ucp_profile_info 'version' => '1.0.0', 'modes' => array( 'profile_info' => array('title' => 'UCP_PROFILE_PROFILE_INFO', 'auth' => '', 'cat' => array('UCP_PROFILE')), - 'signature' => array('title' => 'UCP_PROFILE_SIGNATURE', 'auth' => '', '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')), ), |