This was removed/lost in commit 8ce8f410 (which doesn't reference an issue nid). In D6, this was building up items for theme('item_list') so we could just manually append the feed icon:
'view_all_releases' => l(t('View all releases'), 'node/'. $node->nid .'/release') . theme('project_feed_icon', url('node/'. $node->nid .'/release/feed'), t('RSS feed of all releases')),
In D7, this stuff has been ported to theme('links'), and there's no way easy to append something like this anymore:
Comments
Comment #1
dwwI'll take a look.
Comment #2
dwwThis was removed/lost in commit 8ce8f410 (which doesn't reference an issue nid). In D6, this was building up items for theme('item_list') so we could just manually append the feed icon:
In D7, this stuff has been ported to theme('links'), and there's no way easy to append something like this anymore:
Some possible options:
A) It'd be trivial to add the feed icon as another link, which would show up in a separate
<li>but that's probably not what we want.B) We could switch this back to an item_list, not #links.
C) We could "won't fix" this issue -- who cares? ;)
Thoughts?
Comment #3
drummI'm tempted to won't fix this. Update status provides what people need for notification. Let's push to after launch and see if anyone asks.
Comment #4
drummFixing tag
Comment #5
tvn commentedI think we can won't fix at this point. The link is present on the actual "Releases for X" page.