From a0fa45fbba20cbdef4eea621a55680e123ff7410 Mon Sep 17 00:00:00 2001 From: albert Date: Wed, 14 Sep 2011 13:15:33 -0400 Subject: [PATCH] fixes #55: Forum "reply" button naming issue. --- app/views/forum_posts/_forum_post.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/forum_posts/_forum_post.html.erb b/app/views/forum_posts/_forum_post.html.erb index 6af4e885f..265330786 100644 --- a/app/views/forum_posts/_forum_post.html.erb +++ b/app/views/forum_posts/_forum_post.html.erb @@ -10,7 +10,7 @@ <%= format_text(forum_post.body) %> -
  • <%= link_to "Reply", new_forum_post_path(:post_id => forum_post.id) %>
  • +
  • <%= link_to "Quote", new_forum_post_path(:post_id => forum_post.id) %>
  • <% if CurrentUser.user.is_janitor? || CurrentUser.user.id == forum_post.creator_id %>
  • <%= link_to "Delete", forum_post_path(forum_post.id), :confirm => "Do you really want to delete this post?", :method => :delete, :remote => true %>
  • <%= link_to "Edit", edit_forum_post_path(forum_post.id) %>