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 ?
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | issue.inc_2.patch | 836 bytes | fgm |
Comments
Comment #1
fgmfinall submitting patch, against today's version.
Comment #2
hunmonk commentedfixed 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.
Comment #3
fgmIt does fix it (checked in 5.x) : node_feed is passed $result, which is built in
project_issue_query_resultfrom a query usingn.changedas it should. Thanks.