aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/feed.php
diff options
context:
space:
mode:
authorRubén Calvo <rubencm@gmail.com>2018-07-10 13:17:04 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-05-09 18:59:45 +0200
commit3c2e75b52adc18360a10590543f29513b95f206b (patch)
tree6e1985bb1772a31b24a9931b5c165669bc916295 /phpBB/feed.php
parent7c26569d93dc4f533f1c912b1ab9a4b72bdd8677 (diff)
downloadforums-3c2e75b52adc18360a10590543f29513b95f206b.tar
forums-3c2e75b52adc18360a10590543f29513b95f206b.tar.gz
forums-3c2e75b52adc18360a10590543f29513b95f206b.tar.bz2
forums-3c2e75b52adc18360a10590543f29513b95f206b.tar.xz
forums-3c2e75b52adc18360a10590543f29513b95f206b.zip
[ticket/15720] Don't escape ampersands on redirections
PHPBB3-15720
Diffstat (limited to 'phpBB/feed.php')
-rw-r--r--phpBB/feed.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php
index 1480867d6c..e384489ee9 100644
--- a/phpBB/feed.php
+++ b/phpBB/feed.php
@@ -36,17 +36,17 @@ $mode = $request->variable('mode', '');
if ($forum_id !== 0)
{
- $url = $controller_helper->route('phpbb_feed_forum', array('forum_id' => $forum_id));
+ $url = $controller_helper->route('phpbb_feed_forum', array('forum_id' => $forum_id), false);
}
else if ($topic_id !== 0)
{
- $url = $controller_helper->route('phpbb_feed_topic', array('topic_id' => $topic_id));
+ $url = $controller_helper->route('phpbb_feed_topic', array('topic_id' => $topic_id), false);
}
else
{
try
{
- $url = $controller_helper->route('phpbb_feed_overall', array('mode' => $mode));
+ $url = $controller_helper->route('phpbb_feed_overall', array('mode' => $mode), false);
}
catch (InvalidParameterException $e)
{