fixed: RSS feeds generated with incorrect link for channel
This commit is contained in:
parent
3958a36271
commit
35d1fc9579
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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'));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue