mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-05 23:25:30 +02:00
fixing some bugs
git-svn-id: file:///svn/phpbb/trunk@5742 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
8936be1628
commit
20e6dbb389
@ -322,7 +322,7 @@ class acp_permissions
|
||||
$sql_forum_id = ($permission_scope == 'global') ? 'AND a.forum_id = 0' : ((sizeof($forum_id)) ? 'AND a.forum_id IN (' . implode(', ', $forum_id) . ')' : 'AND a.forum_id <> 0');
|
||||
$sql_permission_option = "AND o.auth_option LIKE '" . $db->sql_escape($permission_type) . "%'";
|
||||
|
||||
$sql = 'SELECT DISTINCT u.user_id, u.username
|
||||
$sql = 'SELECT DISTINCT u.username, u.user_regdate, u.user_id
|
||||
FROM (' . USERS_TABLE . ' u, ' . ACL_OPTIONS_TABLE . ' o, ' . ACL_USERS_TABLE . ' a)
|
||||
LEFT JOIN ' . ACL_ROLES_DATA_TABLE . " r ON (a.auth_role_id = r.role_id)
|
||||
WHERE (a.auth_option_id = o.auth_option_id OR r.auth_option_id = o.auth_option_id)
|
||||
@ -341,7 +341,7 @@ class acp_permissions
|
||||
}
|
||||
$db->sql_freeresult($result);
|
||||
|
||||
$sql = 'SELECT DISTINCT g.group_id, g.group_name, g.group_type
|
||||
$sql = 'SELECT DISTINCT g.group_type, g.group_name, g.group_id
|
||||
FROM (' . GROUPS_TABLE . ' g, ' . ACL_OPTIONS_TABLE . ' o, ' . ACL_GROUPS_TABLE . ' a)
|
||||
LEFT JOIN ' . ACL_ROLES_DATA_TABLE . " r ON (a.auth_role_id = r.role_id)
|
||||
WHERE (a.auth_option_id = o.auth_option_id OR r.auth_option_id = o.auth_option_id)
|
||||
|
@ -184,6 +184,11 @@ class acp_reasons
|
||||
trigger_error($user->lang['NO_REASON'] . adm_back_link($this->u_action));
|
||||
}
|
||||
|
||||
if ($reason_row['reason_title'] == 'other')
|
||||
{
|
||||
trigger_error($user->lang['NO_REMOVE_DEFAULT_REASON'] . adm_back_link($this->u_action));
|
||||
}
|
||||
|
||||
// Let the deletion be confirmed...
|
||||
if (confirm_box(true))
|
||||
{
|
||||
|
@ -226,7 +226,7 @@ class acp_users
|
||||
add_log('admin', $log, $user->lang['reason']);
|
||||
add_log('user', $user_id, $log, $user->lang['reason']);
|
||||
|
||||
trigger_error($user->lang['BAN_SUCCESSFULL'] . adm_back_link($this->u_action . '&u=' . $user_id));
|
||||
trigger_error($user->lang['BAN_SUCCESSFUL'] . adm_back_link($this->u_action . '&u=' . $user_id));
|
||||
|
||||
break;
|
||||
|
||||
|
@ -210,8 +210,9 @@ $lang = array_merge($lang, array(
|
||||
'IS_NOT_TRANSLATED' => 'Reason has not been localized',
|
||||
'IS_TRANSLATED' => 'Reason has been localized',
|
||||
|
||||
'NO_REASON' => 'Reason could not be found',
|
||||
'NO_REASON_INFO' => 'You have to specify a title and a description for this reason.',
|
||||
'NO_REASON' => 'Reason could not be found',
|
||||
'NO_REASON_INFO' => 'You have to specify a title and a description for this reason.',
|
||||
'NO_REMOVE_DEFAULT_REASON' => 'You are not able to remove the default reason "Other".',
|
||||
|
||||
'REASON_ADD' => 'Add report/denial reason',
|
||||
'REASON_ADDED' => 'Report/denial reason successfully added',
|
||||
|
@ -31,7 +31,7 @@ if (empty($lang) || !is_array($lang))
|
||||
$lang = array_merge($lang, array(
|
||||
'ADMIN_SIG_PREVIEW' => 'Signature preview',
|
||||
|
||||
'BAN_SUCCESSFULL' => 'Ban entered successfully',
|
||||
'BAN_SUCCESSFUL' => 'Ban entered successfully',
|
||||
|
||||
'CANNOT_REMOVE_ANONYMOUS' => 'You are not able to remove the guest user account.',
|
||||
'CANNOT_REMOVE_YOURSELF' => 'You are not allowed to remove your own user account.',
|
||||
|
Loading…
x
Reference in New Issue
Block a user