aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/posts/_comments.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/refinery/blog/posts/_comments.html.erb')
-rw-r--r--app/views/refinery/blog/posts/_comments.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/refinery/blog/posts/_comments.html.erb b/app/views/refinery/blog/posts/_comments.html.erb
index 9bc0a13..a34d106 100644
--- a/app/views/refinery/blog/posts/_comments.html.erb
+++ b/app/views/refinery/blog/posts/_comments.html.erb
@@ -1,6 +1,6 @@
<aside id="comments">
<h2><%= t('title', :scope => 'refinery.blog.posts.show.comments') %></h2>
- <% if (comments = @blog_post.comments.approved).any? %>
+ <% if (comments = @post.comments.approved).any? %>
<%= render :partial => "comment", :collection => comments %>
<% else %>
<p>
@@ -15,7 +15,7 @@
<% end %>
<h2><%= t('add', :scope => 'refinery.blog.posts.show.comments') %></h2>
- <%= form_for [main_app, :blog_post, @blog_comment] do |f| %>
+ <%= form_for [main_app, :refinery_blog, @comment] do |f| %>
<%= render :partial => "/refinery/admin/error_messages",
:locals => {
:object => f.object,