diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-10-29 15:16:59 -0400 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-10-29 15:16:59 -0400 |
commit | c9ad0c6f25ddee3d433ec50b587c0a6668d4a174 (patch) | |
tree | 54a96819d436a549ed3ea61dec4f6ab2669a2bb5 /phpBB/includes/ucp | |
parent | dc8052b5c035f5eb588084e68ece7e0f977290a4 (diff) | |
parent | 88b100d818940340e660c9f372526b1b5466bf3a (diff) | |
download | forums-c9ad0c6f25ddee3d433ec50b587c0a6668d4a174.tar forums-c9ad0c6f25ddee3d433ec50b587c0a6668d4a174.tar.gz forums-c9ad0c6f25ddee3d433ec50b587c0a6668d4a174.tar.bz2 forums-c9ad0c6f25ddee3d433ec50b587c0a6668d4a174.tar.xz forums-c9ad0c6f25ddee3d433ec50b587c0a6668d4a174.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/11158] Require acl_u_sig for ucp signature module.
[ticket/11158] Revert old fix in PHPBB3-10186.
Conflicts:
phpBB/install/database_update.php
phpBB/ucp.php
Diffstat (limited to 'phpBB/includes/ucp')
-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 968538a178..201216e9fd 100644 --- a/phpBB/includes/ucp/info/ucp_profile.php +++ b/phpBB/includes/ucp/info/ucp_profile.php @@ -20,7 +20,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')), 'autologin_keys'=> array('title' => 'UCP_PROFILE_AUTOLOGIN_KEYS', 'auth' => '', 'cat' => array('UCP_PROFILE')), |