diff --git a/app/views/forum_topics/show.html.erb b/app/views/forum_topics/show.html.erb index 7c5e19031..db8136838 100644 --- a/app/views/forum_topics/show.html.erb +++ b/app/views/forum_topics/show.html.erb @@ -18,11 +18,13 @@ <%= render "forum_posts/listing", :forum_posts => @forum_posts %> <% if CurrentUser.is_member? %> -
<%= link_to "Reply »".html_safe, new_forum_post_path(:topic_id => @forum_topic.id), :id => "new-response-link" %>
+ <% if CurrentUser.is_janitor? || !@forum_topic.is_locked? %> +<%= link_to "Reply »".html_safe, new_forum_post_path(:topic_id => @forum_topic.id), :id => "new-response-link" %>
- + + <% end %> <% end %> <%= numbered_paginator(@forum_posts) %>