Topic: Removing "-new-posts" in RSS feed ?

Hi,
I'm trying to modify RSS to get permalink with this feed : http://geekeo.fr/feed-rss.xml
It send URL to last reply but I would remove the "-new-posts", do you know how to do that ?
Thanks ! smile

Re: Removing "-new-posts" in RSS feed ?

No one knows ? :'(

Re: Removing "-new-posts" in RSS feed ?

I don't understand what you want to do.

Please, describe in details: What have you done? What have you obtained? What do you expect?

Re: Removing "-new-posts" in RSS feed ?

I just want the permalinks to the lasts topics of forum.

Re: Removing "-new-posts" in RSS feed ?

Ok, I've got it.

You have to change extern.php, line 483:

   'link'    =>    forum_link($forum_url['topic_new_posts'], array($cur_topic['id'], sef_friendly($cur_topic['subject']))),

You can replace 'topic_new_posts' by 'topic' (for links to topics) or 'topic_last_post' (for links to last posts). Btw, this could be a little extension.

Re: Removing "-new-posts" in RSS feed ?

This could be by default. big_smile
Thanks!