|
PITS /
00977Summary: Web Feeds bug when
$RecentChangesFmt changedCreated: 2007-09-19 12:38
Status: Open
Category: Bug
From: Diafygi
Assigned:
Priority: 3
Version: 2.2.0-beta62
OS: Linux/Apache/5
Description:
As described in the email list and Cookbook.AllRecentChanges, I changed my $RecentChangesFmt = array(
'$SiteGroup.AllRecentChanges' =>
'* [[$Group.$Name]] . . . $CurrentTime $[by] $AuthorLink: [=$ChangeSummary=]',
'$Group.RecentChanges' =>
'* [[$Group/$Name]] . . . $CurrentTime $[by] $AuthorLink: [=$ChangeSummary=]');
Also, I changed the web feeds/rss/atom variable $FeedFmt to a custom format as. Code I used: $FeedFmt['rss']['item']['title'] = '{$Group} / {$Title} : $LastModifiedSummary';
$FeedFmt['rss']['item']['description'] = 'Changes made by: $LastModifiedBy';
The bug occurs when multiple changes are made to a single page. The For example:
This is because the $LastModifiedSummary and $LastModifiedBy variables only look at the most recent summary and author. If I change these variables to the ones used in the custom Why can't I use $ChangeSummary and $AuthorLink instead of LastModifiedSummary and $LastModifiedBy in the $FeedFmt array? Why does the time of the web feed only show the most recent time? How can a make the RSS feed display correctly like the AllRecentChanges page? |