Line 30 | Line 30 |
---|
global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx; global $request;
|
global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx; global $request;
|
include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); include_once($phpbb_root_path . 'includes/acp/auth.' . $phpEx);
| if (!function_exists('user_get_id_name')) { include($phpbb_root_path . 'includes/functions_user.' . $phpEx); }
if (!class_exists('auth_admin')) { include($phpbb_root_path . 'includes/acp/auth.' . $phpEx); }
|
$this->auth_admin = new auth_admin();
| $this->auth_admin = new auth_admin();
|
Line 358 | Line 365 |
---|
case 'move_up': case 'move_down':
|
case 'move_up': case 'move_down':
|
| if (!check_link_hash($request->variable('hash', ''), 'acp_permission_roles')) { trigger_error($user->lang['FORM_INVALID'] . adm_back_link($this->u_action), E_USER_WARNING); }
|
$sql = 'SELECT role_order FROM ' . ACL_ROLES_TABLE . "
| $sql = 'SELECT role_order FROM ' . ACL_ROLES_TABLE . "
|
Line 433 | Line 445 |
---|
'U_EDIT' => $this->u_action . '&action=edit&role_id=' . $row['role_id'], 'U_REMOVE' => $this->u_action . '&action=remove&role_id=' . $row['role_id'],
|
'U_EDIT' => $this->u_action . '&action=edit&role_id=' . $row['role_id'], 'U_REMOVE' => $this->u_action . '&action=remove&role_id=' . $row['role_id'],
|
'U_MOVE_UP' => $this->u_action . '&action=move_up&role_id=' . $row['role_id'], 'U_MOVE_DOWN' => $this->u_action . '&action=move_down&role_id=' . $row['role_id'],
| 'U_MOVE_UP' => $this->u_action . '&action=move_up&role_id=' . $row['role_id'] . '&hash=' . generate_link_hash('acp_permission_roles'), 'U_MOVE_DOWN' => $this->u_action . '&action=move_down&role_id=' . $row['role_id'] . '&hash=' . generate_link_hash('acp_permission_roles'),
|
'U_DISPLAY_ITEMS' => ($row['role_id'] == $display_item) ? '' : $this->u_action . '&display_item=' . $row['role_id'] . '#assigned_to') );
| 'U_DISPLAY_ITEMS' => ($row['role_id'] == $display_item) ? '' : $this->u_action . '&display_item=' . $row['role_id'] . '#assigned_to') );
|