When creating $node object for a feeditem feedapi_node_link() [in feedapi_node.module] now formats the info about the parent feed as such (starting at line 86):

 $links['feedapi_feed_'. $feed->nid] = array(
   'title' => t('Feed:') .' '. $feed->title,
   'href' => 'node/'. $feed->nid,
);

So that there is unique index, e.g, 'feedapi_feed_2345' vs. just 'feedapi'. Not sure if this is actually a bug, but, if not, is this necessary? It adds a real wrinkle when trying to theme.

Otherise, many thanks. This is a tremendous module.

Comments

aron novak’s picture

Assigned: Unassigned » aron novak
Status: Active » Fixed

Well, yes. It's a bug. I fixed this (next daily dev package will contain the fix), so now if the feed item does not have multiple originator feeds, you can theme the link easily. Just make sure that the cross feed deduping is disabled. If the cross feed deduping is enabled, currently i cannot see a good way, because if that case, a feed item may have unlimited originator feed.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.