Currently, the RSS issue feeds returns updates on issues, generating them on each issue update or comment, but with the date of the item matching the node creation date, instead of the date of the last update or comment added.

However, project_issue_query_rss does check whether node->updated is more recent than node->created to choose which date is displayed.

But shouldn't it be checking node->changed instead ?

CommentFileSizeAuthor
#1 issue.inc_2.patch836 bytesfgm

Comments

fgm’s picture

Version: x.y.z » 4.7.x-1.x-dev
Status: Active » Needs review
StatusFileSize
new836 bytes

finall submitting patch, against today's version.

hunmonk’s picture

Version: 4.7.x-1.x-dev » 4.7.x-2.x-dev
Status: Needs review » Fixed

fixed in 4.7.x-1.x, 4.7.x-2.x

for 5.x and beyond, it looks like we're using node_feed() instead, which i'm guessing fixed this problem. if not, please reopen.

fgm’s picture

Status: Fixed » Closed (fixed)

It does fix it (checked in 5.x) : node_feed is passed $result, which is built in project_issue_query_result from a query using n.changed as it should. Thanks.