diff options
author | Marc Alexander <admin@m-a-styles.de> | 2018-01-07 11:04:37 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-01-07 11:04:37 +0100 |
commit | 69a168bcb2931f6071ac4479fd62f71da2119586 (patch) | |
tree | ff516b22393e6d2bb7417ef7c87bd7bb254e559c | |
parent | c7b3407eb2f9946a561eb0a4d4b0a20387bd6c33 (diff) | |
parent | e31474542dac500c76ed67d2b80f90a38da149d1 (diff) | |
download | forums-69a168bcb2931f6071ac4479fd62f71da2119586.tar forums-69a168bcb2931f6071ac4479fd62f71da2119586.tar.gz forums-69a168bcb2931f6071ac4479fd62f71da2119586.tar.bz2 forums-69a168bcb2931f6071ac4479fd62f71da2119586.tar.xz forums-69a168bcb2931f6071ac4479fd62f71da2119586.zip |
Merge pull request #5074 from marc1706/ticket/15498
[ticket/15498] Do not pass whether URL uses router to is_route
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 1bbd1b190e..4aae84705b 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2185,7 +2185,7 @@ function confirm_box($check, $title = '', $hidden = '', $html_body = 'confirm_bo // re-add sid / transform & to & for user->page (user->page is always using &) $use_page = ($u_action) ? $u_action : str_replace('&', '&', $user->page['page']); - $u_action = reapply_sid($phpbb_path_helper->get_valid_page($use_page, $config['enable_mod_rewrite']), $phpbb_path_helper->is_router_used()); + $u_action = reapply_sid($phpbb_path_helper->get_valid_page($use_page, $config['enable_mod_rewrite'])); $u_action .= ((strpos($u_action, '?') === false) ? '?' : '&') . 'confirm_key=' . $confirm_key; $template->assign_vars(array( |