1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 02:06:32 +02:00

[ticket/15720] Don't escape ampersands on redirections

PHPBB3-15720
This commit is contained in:
Rubén Calvo
2018-07-10 13:17:04 +02:00
committed by Marc Alexander
parent 7c26569d93
commit 3c2e75b52a
3 changed files with 5 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ $get_params_array = $request->get_super_global(\phpbb\request\request_interface:
/** @var \phpbb\controller\helper $controller_helper */
$controller_helper = $phpbb_container->get('controller.helper');
$response = new RedirectResponse(
$controller_helper->route('phpbb_cron_run', $get_params_array),
$controller_helper->route('phpbb_cron_run', $get_params_array, false),
301
);
$response->send();