##// END OF EJS Templates
Fixed: error on history atom feed when there's no notes on an issue change...
Jean-Philippe Lang -
r463:2f1d8630f153
parent child
Show More
@@ -16,7 +16,7 xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
16 xml.author { xml.name journal.user.name }
16 xml.author { xml.name journal.user.name }
17 xml.summary journal.notes
17 xml.summary journal.notes
18 xml.content "type" => "html" do
18 xml.content "type" => "html" do
19 xml.text! journal.notes
19 xml.text! journal.notes if journal.notes
20 xml.text! "<ul>"
20 xml.text! "<ul>"
21 journal.details.each do |detail|
21 journal.details.each do |detail|
22 xml.text! "<li>" + show_detail(detail, false) + "</li>"
22 xml.text! "<li>" + show_detail(detail, false) + "</li>"
General Comments 0
You need to be logged in to leave comments. Login now