app/helpers/comments_helper.rb in beef-articles-0.3.29 vs app/helpers/comments_helper.rb in beef-articles-0.3.30
- old
+ new
@@ -1,7 +1,7 @@
module CommentsHelper
def comments_list(commentable)
- content_tag :ul, render(:partial => commentable.comments, :locals => { :commentable => commentable }), :id => 'comment-list' unless commentable.comments.empty?
+ content_tag :ul, render(:partial => commentable.comments), :id => 'comment-list' unless commentable.comments.empty?
end
end