diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 9e9ae35ca..12b8c981d 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.8.3 + - fixed: RSS feeds generated with incorrect link for channel - Fixed an error being thrown by the CalendarUpdateFeeds workflow activity. - The auto add to group and auto delete from group operations that are used with the GroupAdd and GroupDelete macros were fixed to make the user log in if they aren't already. - fixed #11074: Links to CS posts not working diff --git a/lib/WebGUI/AssetAspect/RssFeed.pm b/lib/WebGUI/AssetAspect/RssFeed.pm index b1caab66f..85e8db41f 100644 --- a/lib/WebGUI/AssetAspect/RssFeed.pm +++ b/lib/WebGUI/AssetAspect/RssFeed.pm @@ -483,7 +483,7 @@ sub getFeed { $feed->description( $self->get('feedDescription') || $self->get('synopsis') ); $feed->pubDate( $self->getContentLastModified ); $feed->copyright( $self->get('feedCopyright') ); - $feed->link( $self->getUrl ); + $feed->link( $self->session->url->getSiteURL . $self->getUrl ); # $feed->language( $lang ); if ($self->get('feedImage')) { my $storage = WebGUI::Storage->get($self->session, $self->get('feedImage'));