diff --git a/app/controllers/post_versions_controller.rb b/app/controllers/post_versions_controller.rb
index 2427b9074..ade388b63 100644
--- a/app/controllers/post_versions_controller.rb
+++ b/app/controllers/post_versions_controller.rb
@@ -1,4 +1,5 @@
class PostVersionsController < ApplicationController
+ before_filter :member_only
respond_to :html, :xml, :json
def index
diff --git a/app/views/posts/show.html.erb b/app/views/posts/show.html.erb
index eab4cbcca..b11b8451a 100644
--- a/app/views/posts/show.html.erb
+++ b/app/views/posts/show.html.erb
@@ -19,18 +19,19 @@
Options
<%= render "posts/partials/show/options", :post => @post %>
+
+
+ History
+
+ - <%= fast_link_to "Tags", post_versions_path(:search => {:post_id => @post.id}) %>
+ - <%= fast_link_to "Notes", note_versions_path(:search => {:post_id => @post.id}) %>
+ - <%= fast_link_to "Flags & Appeals", post_events_path(@post.id) %>
+ - <%= fast_link_to "Commentary", artist_commentary_versions_path(:search => {:post_id => @post.id}) %>
+
+
+
<% end %>
-
-
- History
-
- - <%= fast_link_to "Tags", post_versions_path(:search => {:post_id => @post.id}) %>
- - <%= fast_link_to "Notes", note_versions_path(:search => {:post_id => @post.id}) %>
- - <%= fast_link_to "Flags & Appeals", post_events_path(@post.id) %>
- - <%= fast_link_to "Commentary", artist_commentary_versions_path(:search => {:post_id => @post.id}) %>
-
-
-
+