diff --git a/app/views/common/feed.atom.rxml b/app/views/common/feed.atom.rxml index d276928a..688d1d27 100644 --- a/app/views/common/feed.atom.rxml +++ b/app/views/common/feed.atom.rxml @@ -21,7 +21,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do author = item.event_author if item.respond_to?(:event_author) xml.author do xml.name(author) - xml.email(author.mail) if author.respond_to?(:mail) && !author.mail.blank? + 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) diff --git a/app/views/issues/changes.rxml b/app/views/issues/changes.rxml index 239d2d6a..43324cfb 100644 --- a/app/views/issues/changes.rxml +++ b/app/views/issues/changes.rxml @@ -15,7 +15,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do xml.updated change.created_on.xmlschema xml.author do xml.name change.user.name - xml.email(change.user.mail) + xml.email(change.user.mail) if change.user.is_a?(User) && !change.user.mail.blank? && !change.user.pref.hide_mail end xml.content "type" => "html" do xml.text! '