about summary refs log tree commit diff stats
path: root/app/views/quotes
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/quotes')
-rw-r--r--app/views/quotes/latest.atom.builder2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/quotes/latest.atom.builder b/app/views/quotes/latest.atom.builder index 66849cc..d389a58 100644 --- a/app/views/quotes/latest.atom.builder +++ b/app/views/quotes/latest.atom.builder
@@ -5,7 +5,7 @@ atom_feed do |feed|
5 @quotes.each do |quote| 5 @quotes.each do |quote|
6 feed.entry(quote) do |entry| 6 feed.entry(quote) do |entry|
7 entry.title("##{quote.id}") 7 entry.title("##{quote.id}")
8 entry.content(quote.content, :type => 'text') 8 entry.content(quote_format(quote.content), :type => 'html')
9 end 9 end
10 end 10 end
11end 11end