diff options
author | 2018-07-10 13:17:04 +0200 | |
---|---|---|
committer | 2018-07-25 22:03:11 +0200 | |
commit | f0b70512c03a02681c7adccc8a912cfeb75582c7 (patch) | |
tree | 2248190e79aa22edfeb3e65ce477a76901b050ca /phpBB/cron.php | |
parent | Merge pull request #5284 from marc1706/ticket/12627 (diff) | |
download | phpbb-f0b70512c03a02681c7adccc8a912cfeb75582c7.tar.gz phpbb-f0b70512c03a02681c7adccc8a912cfeb75582c7.tar.bz2 phpbb-f0b70512c03a02681c7adccc8a912cfeb75582c7.zip |
[ticket/15720] Don't escape ampersands on redirections
PHPBB3-15720
Diffstat (limited to 'phpBB/cron.php')
-rw-r--r-- | phpBB/cron.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/cron.php b/phpBB/cron.php index 58261429a2..c99b772487 100644 --- a/phpBB/cron.php +++ b/phpBB/cron.php @@ -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(); |