Stories have to pass along absolute links in their RSS feeds. Fixes bug #11606

This commit is contained in:
Colin Kuskie 2010-06-07 11:44:30 -07:00
parent 59fed35087
commit c9dc084ed6
3 changed files with 8 additions and 5 deletions

View file

@ -9,6 +9,7 @@
- fixed #11605: UserList refers to non-existent "publicEmail" user profiling field - fixed #11605: UserList refers to non-existent "publicEmail" user profiling field
- fixed #11595: Orphaned data in inbox_messageState - fixed #11595: Orphaned data in inbox_messageState
- fixed AddressBook feedback for missing fields. - fixed AddressBook feedback for missing fields.
- fixed #11606: Syndicated Content feed returns a relative link
7.9.6 7.9.6
- new checkbox in the asset manager for clearing the package flag on import - new checkbox in the asset manager for clearing the package flag on import

View file

@ -534,15 +534,17 @@ property of the Asset.
=cut =cut
sub getRssData { sub getRssData {
my $self = shift; my $self = shift;
my $session = $self->session;
my $url = $session->url->getSiteURL.$self->getUrl;
my $data = { my $data = {
title => $self->get('headline') || $self->getTitle, title => $self->get('headline') || $self->getTitle,
description => $self->get('story'), description => $self->get('story'),
'link' => $self->getUrl, 'link' => $url,
guid => $self->getUrl, guid => $url,
author => $self->get('byline'), author => $self->get('byline'),
date => $self->get('lastModified'), date => $self->get('lastModified'),
pubDate => $self->session->datetime->epochToMail($self->get('creationDate')), pubDate => $session->datetime->epochToMail($self->get('creationDate')),
}; };
return $data; return $data;
} }

View file

@ -278,7 +278,7 @@ cmp_deeply(
{ {
title => 'Story 1', title => 'Story 1',
description => 'WebGUI was originally called Web Done Right.', description => 'WebGUI was originally called Web Done Right.',
'link' => re('story-1$'), 'link' => all(re('^'.$session->url->getSiteURL),re('story-1$')),
guid => re('story-1$'), guid => re('story-1$'),
author => 'JT Smith', author => 'JT Smith',
date => $story->get('lastModified'), date => $story->get('lastModified'),