mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10679] Use module_auth to limit access to the module
PHPBB3-10679
This commit is contained in:
parent
4103c99a86
commit
2f490293e4
3 changed files with 9 additions and 7 deletions
|
@ -19,7 +19,7 @@ class ucp_profile_info
|
||||||
'title' => 'UCP_PROFILE',
|
'title' => 'UCP_PROFILE',
|
||||||
'version' => '1.0.0',
|
'version' => '1.0.0',
|
||||||
'modes' => array(
|
'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')),
|
'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)', 'cat' => array('UCP_PROFILE')),
|
||||||
'reg_details' => array('title' => 'UCP_PROFILE_REG_DETAILS', 'auth' => '', 'cat' => array('UCP_PROFILE')),
|
'reg_details' => array('title' => 'UCP_PROFILE_REG_DETAILS', 'auth' => '', 'cat' => array('UCP_PROFILE')),
|
||||||
|
|
|
@ -2830,6 +2830,14 @@ function change_database_data(&$no_updates, $version)
|
||||||
$auth_admin->acl_clear_prefetch();
|
$auth_admin->acl_clear_prefetch();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update the auth setting for the module
|
||||||
|
$sql = 'UPDATE ' . MODULES_TABLE . "
|
||||||
|
SET module_auth = 'acl_u_chgprofileinfo'
|
||||||
|
WHERE module_class = 'ucp'
|
||||||
|
AND module_basename = 'profile'
|
||||||
|
AND module_mode = 'profile_info'";
|
||||||
|
_sql($sql, $errored, $error_ary);
|
||||||
|
|
||||||
$no_updates = false;
|
$no_updates = false;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -334,12 +334,6 @@ if (!$config['allow_topic_notify'] && !$config['allow_forum_notify'])
|
||||||
$vars = array('module', 'id', 'mode');
|
$vars = array('module', 'id', 'mode');
|
||||||
extract($phpbb_dispatcher->trigger_event('core.ucp_display_module_before', compact($vars)));
|
extract($phpbb_dispatcher->trigger_event('core.ucp_display_module_before', compact($vars)));
|
||||||
|
|
||||||
// Do not display profile information panel if not authed to do so
|
|
||||||
if (!$auth->acl_get('u_chgprofileinfo'))
|
|
||||||
{
|
|
||||||
$module->set_display('profile', 'profile_info', false);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Select the active module
|
// Select the active module
|
||||||
$module->set_active($id, $mode);
|
$module->set_active($id, $mode);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue