diff --git a/app/views/tag_corrections/new.html.erb b/app/views/tag_corrections/new.html.erb
index 471519947..b3ed67ab3 100644
--- a/app/views/tag_corrections/new.html.erb
+++ b/app/views/tag_corrections/new.html.erb
@@ -1,13 +1,14 @@
-
Fix Tag
+Fix Tag: <%= @correction.tag.name %>
<% @correction.each_server do |server| %>
Server: <%= server.hostname %>
- - category cache: <%= server.statistics_hash["category_cache"] %>
- - post fast count cache: <%= server.statistics_hash["post_fast_count_cache"] %>
- - post count: <%= @correction.tag.post_count %>
- - real post count: <%= @correction.tag.real_post_count %>
+ - category actual: <%= @correction.tag.category %>
+ - category memcache: <%= server.statistics_hash["category_cache"] %>
+ - post count memcache: <%= server.statistics_hash["post_fast_count_cache"] %>
+ - post count db cache: <%= @correction.tag.post_count %>
+ - post count actual: <%= @correction.tag.real_post_count %>
<% end %>
diff --git a/app/views/tag_corrections/show.html.erb b/app/views/tag_corrections/show.html.erb
deleted file mode 100644
index 4c165df8c..000000000
--- a/app/views/tag_corrections/show.html.erb
+++ /dev/null
@@ -1,24 +0,0 @@
-Tag Correction: <%= @correction.tag.name %>
-
-Because tag aliases are cached in memory, they may go out of sync. This action will clear out the cache and fix any lingering posts.
-
-<% @correction.each_server do |server| %>
-
-
Server: <%= server.hostname %>
-
- - <%= server.antecedent_name %> aliased to <%= server.statistics_hash["antecedent_cache"] %> in cache
- - <%= server.consequent_name %> aliased to <%= server.statistics_hash["consequent_cache"] %> in cache
- - <%= server.antecedent_name %> count is <%= server.statistics_hash["antecedent_count"] %>
- - <%= server.consequent_name %> count is <%= server.statistics_hash["consequent_count"] %>
-
-
-<% end %>
-
-You can try to fix this alias. This will clear the cache and re-save all posts associated with <%= @correction.antecedent_name %>.
-
-<%= form_tag(tag_alias_correction_path(:tag_alias_id => @correction.tag_alias_id)) do %>
- <%= submit_tag "Fix" %>
- <%= submit_tag "Cancel" %>
-<% end %>
-
-<%= render "tag_aliases/secondary_links" %>
\ No newline at end of file