diff options
author | Marc Alexander <admin@m-a-styles.de> | 2012-11-16 23:04:09 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2012-11-16 23:04:09 +0100 |
commit | ac7c3d2b8d6d2701cf01858b4d483d0d22d54864 (patch) | |
tree | 1f21957939aad9c03688d4a047d582f7ca0239b1 /phpBB/includes/ucp/info/ucp_profile.php | |
parent | ca30135391ef6b6c8149b7bb41aa840cf27d0a01 (diff) | |
download | forums-ac7c3d2b8d6d2701cf01858b4d483d0d22d54864.tar forums-ac7c3d2b8d6d2701cf01858b4d483d0d22d54864.tar.gz forums-ac7c3d2b8d6d2701cf01858b4d483d0d22d54864.tar.bz2 forums-ac7c3d2b8d6d2701cf01858b4d483d0d22d54864.tar.xz forums-ac7c3d2b8d6d2701cf01858b4d483d0d22d54864.zip |
[feature/avatars] Check for gravatar when checking the avatar module_auth
PHPBB3-10018
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 201216e9fd..a0f9598e93 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 'modes' => array( 'profile_info' => array('title' => 'UCP_PROFILE_PROFILE_INFO', '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')), + '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 || cfg_allow_avatar_gravatar)', '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')), ), |