Commit 6e4c563ff66dbba200c98dff8ed733d72ad1237d

Authored by Sergey Nartimov
1 parent 4db62f87
Exists in master and in 1 other branch production

no need to specify format in render call

Showing 1 changed file with 1 additions and 2 deletions   Show diff stats
app/helpers/notices_helper.rb
1 # encoding: utf-8 1 # encoding: utf-8
2 module NoticesHelper 2 module NoticesHelper
3 def notice_atom_summary(notice) 3 def notice_atom_summary(notice)
4 - render "notices/atom_entry.html.haml", :notice => notice 4 + render "notices/atom_entry", :notice => notice
5 end 5 end
6 end 6 end
7 -