diff options
author | Uģis Ozols <ugis.ozolss@gmail.com> | 2010-12-03 09:13:38 +0200 |
---|---|---|
committer | Uģis Ozols <ugis.ozolss@gmail.com> | 2010-12-03 09:13:38 +0200 |
commit | 420afaf199edba87623c1ec54b8c2fcec4001612 (patch) | |
tree | 449c6ac1a1de86454ab24bc575d53a8082c179cf /app/views/blog | |
parent | 1167a1d6a99e51f8f7d1a3cef3d75eaa402656a8 (diff) | |
download | refinerycms-blog-420afaf199edba87623c1ec54b8c2fcec4001612.tar.gz refinerycms-blog-420afaf199edba87623c1ec54b8c2fcec4001612.tar.bz2 refinerycms-blog-420afaf199edba87623c1ec54b8c2fcec4001612.zip |
Fix deprecation warnings.
Diffstat (limited to 'app/views/blog')
-rw-r--r-- | app/views/blog/posts/show.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/blog/posts/show.html.erb b/app/views/blog/posts/show.html.erb index b6cff8c..5ac4c76 100644 --- a/app/views/blog/posts/show.html.erb +++ b/app/views/blog/posts/show.html.erb @@ -22,7 +22,7 @@ <% end %> <h2><%= t('.comments.add') %></h2> - <% form_for [:blog_post, @blog_comment] do |f| %> + <%= form_for [:blog_post, @blog_comment] do |f| %> <%= render :partial => "/shared/admin/error_messages", :locals => { :object => f.object, |