mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 12:28:52 +00:00
[ticket/13636] Fix coding style
PHPBB3-13636
This commit is contained in:
parent
19fe32d5b2
commit
cc29638bcc
1 changed files with 3 additions and 3 deletions
|
@ -151,9 +151,9 @@ class acp_users
|
|||
}
|
||||
|
||||
$template->assign_vars(array(
|
||||
'U_BACK' => ( (empty($redirect)) ? $this->u_action : $redirect_url ),
|
||||
'U_BACK' => (empty($redirect)) ? $this->u_action : $redirect_url,
|
||||
'U_MODE_SELECT' => append_sid("{$phpbb_admin_path}index.$phpEx", "i=$id&u=$user_id"),
|
||||
'U_ACTION' => $this->u_action . '&u=' . $user_id . ( (empty($redirect)) ? '' : '&' . $redirect_tag ),
|
||||
'U_ACTION' => $this->u_action . '&u=' . $user_id . ((empty($redirect)) ? '' : '&' . $redirect_tag),
|
||||
'S_FORM_OPTIONS' => $s_form_options,
|
||||
'MANAGED_USERNAME' => $user_row['username'])
|
||||
);
|
||||
|
@ -240,7 +240,7 @@ class acp_users
|
|||
'action' => $action,
|
||||
'update' => true,
|
||||
'delete' => 1,
|
||||
'delete_type' => $delete_type
|
||||
'delete_type' => $delete_type,
|
||||
);
|
||||
|
||||
// Checks if the redirection page is specified
|
||||
|
|
Loading…
Add table
Reference in a new issue