From da6bd978e497b45dc8d26cd3d7183854fa1d9969 Mon Sep 17 00:00:00 2001 From: Richard Haeser <richard@maxserv.com> Date: Mon, 4 May 2020 17:39:58 +0200 Subject: [PATCH] [BUGFIX] Fix URLs to RSS feeds in Dashboard Widgets As the www prefix is not used anymore on typo3.org, the URLs of the RSS feeds are updated in the Dashboard Widgets. Resolves: #91297 Releases: master Change-Id: I4ffff83035967b0ba9b7233c82df01651599f103 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/64405 Tested-by: Josef Glatz <josefglatz@gmail.com> Tested-by: Oliver Bartsch <bo@cedev.de> Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Richard Haeser <richard@maxserv.com> Reviewed-by: Josef Glatz <josefglatz@gmail.com> Reviewed-by: Oliver Bartsch <bo@cedev.de> Reviewed-by: Richard Haeser <richard@maxserv.com> --- .../dashboard/Configuration/Backend/DashboardWidgets.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/dashboard/Configuration/Backend/DashboardWidgets.yaml b/typo3/sysext/dashboard/Configuration/Backend/DashboardWidgets.yaml index 298b86af3965..c4556f9ccfa5 100644 --- a/typo3/sysext/dashboard/Configuration/Backend/DashboardWidgets.yaml +++ b/typo3/sysext/dashboard/Configuration/Backend/DashboardWidgets.yaml @@ -67,7 +67,7 @@ services: $cache: '@cache.dashboard.rss' $buttonProvider: '@dashboard.buttons.t3news' $options: - feedUrl: 'https://www.typo3.org/rss' + feedUrl: 'https://typo3.org/rss' tags: - name: dashboard.widget identifier: 't3news' @@ -177,7 +177,7 @@ services: $cache: '@cache.dashboard.rss' $buttonProvider: '@dashboard.buttons.t3securityAdvisories' $options: - feedUrl: 'https://typo3.org/?type=101' + feedUrl: 'https://typo3.org/rss-security' tags: - name: dashboard.widget identifier: 't3securityAdvisories' -- GitLab