diff --git a/app/controllers/post_versions_controller.rb b/app/controllers/post_versions_controller.rb
index 9dd7b198f..e202c6f22 100644
--- a/app/controllers/post_versions_controller.rb
+++ b/app/controllers/post_versions_controller.rb
@@ -1,5 +1,5 @@
class PostVersionsController < ApplicationController
- before_action :member_only
+ before_action :member_only, except: [:index, :search]
before_action :check_availabililty
respond_to :html, :xml, :json
diff --git a/app/views/posts/show.html.erb b/app/views/posts/show.html.erb
index 1863d503f..a7c1b46f0 100644
--- a/app/views/posts/show.html.erb
+++ b/app/views/posts/show.html.erb
@@ -24,20 +24,16 @@
<%= render "posts/partials/show/options", :post => @post %>
- <% if CurrentUser.is_member? %>
-
- History
-
- - <%= link_to "Tags", post_versions_path(search: { post_id: @post.id }) %>
- - <%= link_to "Notes", note_versions_path(search: { post_id: @post.id }) %>
- - <%= link_to "Moderation", post_events_path(@post.id) %>
- - <%= link_to "Commentary", artist_commentary_versions_path(search: { post_id: @post.id }) %>
- - <%= link_to "Replacements", post_replacements_path(search: {post_id: @post.id }) %>
-
-
-
- <% end %>
-
+
+ History
+
+ - <%= link_to "Tags", post_versions_path(search: { post_id: @post.id }) %>
+ - <%= link_to "Notes", note_versions_path(search: { post_id: @post.id }) %>
+ - <%= link_to "Moderation", post_events_path(@post.id) %>
+ - <%= link_to "Commentary", artist_commentary_versions_path(search: { post_id: @post.id }) %>
+ - <%= link_to "Replacements", post_replacements_path(search: {post_id: @post.id }) %>
+
+