Skip to content

Commit

Permalink
[BUGFIX] Generate correct link to blog rss channel
Browse files Browse the repository at this point in the history
Releases: master, 9.1, 9.0
Fixes: #33
  • Loading branch information
benjaminkott committed Feb 13, 2019
1 parent 06c3a90 commit 97edc74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/PostController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 97edc74

Please sign in to comment.