aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRubén Calvo <rubencm@gmail.com>2018-07-10 13:17:04 +0200
committerRubén Calvo <rubencm@gmail.com>2018-07-25 22:03:11 +0200
commitf0b70512c03a02681c7adccc8a912cfeb75582c7 (patch)
tree2248190e79aa22edfeb3e65ce477a76901b050ca /phpBB/cron.php
parentMerge pull request #5284 from marc1706/ticket/12627 (diff)
downloadphpbb-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.php2
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();