diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-05-01 11:39:22 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-05-01 11:39:22 +0000 |
commit | 29c0dae1518ecb8a86d10da8e05caf70f731d746 (patch) | |
tree | 534bc5a39288338e9909bfbea729b0aeeb3eabc6 /app/views/common | |
parent | 9fd14713c59f756db8357578bc3c64a94d7c6221 (diff) | |
download | redmine-29c0dae1518ecb8a86d10da8e05caf70f731d746.tar.gz redmine-29c0dae1518ecb8a86d10da8e05caf70f731d746.zip |
Adds hostname to Redmine links in atom feeds (#3275).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2699 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/common')
-rw-r--r-- | app/views/common/feed.atom.rxml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/common/feed.atom.rxml b/app/views/common/feed.atom.rxml index d5fec75d2..d276928a5 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.respond_to?(:mail) && !author.mail.blank? end if author xml.content "type" => "html" do - xml.text! textilizable(item.event_description) + xml.text! textilizable(item.event_description, :only_path => false) end end end |