summaryrefslogtreecommitdiffstats
path: root/app/views/common
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-05-26 08:28:36 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-05-26 08:28:36 +0000
commitc082cfc90ef8fccc77e808ae64db711777fd8f8c (patch)
tree0ebcd1502964ad4b607bf860899f74cdcf02b23e /app/views/common
parent5db407ca59cd63282837097957db3961b6e63fc0 (diff)
downloadredmine-c082cfc90ef8fccc77e808ae64db711777fd8f8c.tar.gz
redmine-c082cfc90ef8fccc77e808ae64db711777fd8f8c.zip
FIxed: inline images not displayed in atom feeds (#3391).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2768 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/common')
-rw-r--r--app/views/common/feed.atom.rxml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/common/feed.atom.rxml b/app/views/common/feed.atom.rxml
index 688d1d27a..70dacc75a 100644
--- a/app/views/common/feed.atom.rxml
+++ b/app/views/common/feed.atom.rxml
@@ -24,7 +24,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
xml.email(author.mail) if author.is_a?(User) && !author.mail.blank? && !author.pref.hide_mail
end if author
xml.content "type" => "html" do
- xml.text! textilizable(item.event_description, :only_path => false)
+ xml.text! textilizable(item, :event_description, :only_path => false)
end
end
end