Remove .rss from the link element of channel in a category's rss feed

This commit is contained in:
Neil Lalonde 2013-07-04 14:17:01 -04:00
parent 28c168fc2b
commit 227294897e
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><%= @category.name %></title>
<link><%= Discourse.base_url %>/category/<%= @category.slug %>.rss</link>
<link><%= Discourse.base_url %>/category/<%= @category.slug %></link>
<description><%= t 'topics_in_category', category: @category.name %><%= @category.description %></description>
<atom:link href="<%= Discourse.base_url %>/category/<%= @category.slug %>.rss" rel="self" type="application/rss+xml" />
<% @topic_list.topics.each do |topic| %>