From d5821e15f207e7ebd7bcd6fbbf3b3379c63ef826 Mon Sep 17 00:00:00 2001 From: Benjamin Kott Date: Wed, 13 Feb 2019 15:56:20 +0100 Subject: [PATCH] [BUGFIX] Generate correct link to blog rss channel Releases: master, 9.1, 9.0 Fixes: #33 --- Classes/Controller/PostController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Controller/PostController.php b/Classes/Controller/PostController.php index dbc273f5..902901d6 100644 --- a/Classes/Controller/PostController.php +++ b/Classes/Controller/PostController.php @@ -126,7 +126,7 @@ protected function initializeView(ViewInterface $view): void 'title' => LocalizationUtility::translate('feed.title' . $action, 'blog', $arguments), 'description' => LocalizationUtility::translate('feed.description' . $action, 'blog', $arguments), 'language' => $this->getTypoScriptFontendController()->sys_language_isocode, - 'link' => $this->uriBuilder->setUseCacheHash(false)->setArgumentsToBeExcludedFromQueryString(['id'])->setCreateAbsoluteUri(true)->setAddQueryString(true)->build(), + 'link' => $this->uriBuilder->getRequest()->getRequestUri(), 'date' => date('r'), ]; $this->view->assign('feed', $feedData);