mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/13192] Use get_valid_user_page in confirm_box() and cleanup globals
The $request global existed twice and the $phpEx global is not being used in confirm_box(). PHPBB3-13192
This commit is contained in:
parent
c381ad2002
commit
ce8c09f51f
1 changed files with 3 additions and 3 deletions
|
@ -2638,7 +2638,7 @@ function check_form_key($form_name, $timespan = false)
|
||||||
function confirm_box($check, $title = '', $hidden = '', $html_body = 'confirm_body.html', $u_action = '')
|
function confirm_box($check, $title = '', $hidden = '', $html_body = 'confirm_body.html', $u_action = '')
|
||||||
{
|
{
|
||||||
global $user, $template, $db, $request;
|
global $user, $template, $db, $request;
|
||||||
global $phpEx, $phpbb_root_path, $request;
|
global $phpbb_path_helper, $phpbb_root_path;
|
||||||
|
|
||||||
if (isset($_POST['cancel']))
|
if (isset($_POST['cancel']))
|
||||||
{
|
{
|
||||||
|
@ -2700,8 +2700,8 @@ function confirm_box($check, $title = '', $hidden = '', $html_body = 'confirm_bo
|
||||||
}
|
}
|
||||||
|
|
||||||
// re-add sid / transform & to & for user->page (user->page is always using &)
|
// re-add sid / transform & to & for user->page (user->page is always using &)
|
||||||
$use_page = ($u_action) ? $phpbb_root_path . $u_action : $phpbb_root_path . str_replace('&', '&', $user->page['page']);
|
$use_page = ($u_action) ? $u_action : str_replace('&', '&', $user->page['page']);
|
||||||
$u_action = reapply_sid($use_page);
|
$u_action = reapply_sid($phpbb_path_helper->get_valid_user_page($use_page));
|
||||||
$u_action .= ((strpos($u_action, '?') === false) ? '?' : '&') . 'confirm_key=' . $confirm_key;
|
$u_action .= ((strpos($u_action, '?') === false) ? '?' : '&') . 'confirm_key=' . $confirm_key;
|
||||||
|
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
|
|
Loading…
Add table
Reference in a new issue