diff --git a/app/views/tag_aliases/show.html.erb b/app/views/tag_aliases/show.html.erb
index 6a64775dd..103f9e5a9 100644
--- a/app/views/tag_aliases/show.html.erb
+++ b/app/views/tag_aliases/show.html.erb
@@ -4,7 +4,7 @@
From <%= link_to @tag_alias.antecedent_name, posts_path(:tags => @tag_alias.antecedent_name) %>
To <%= link_to @tag_alias.consequent_name, posts_path(:tags => @tag_alias.consequent_name) %>
<% if @tag_alias.forum_topic_id %>
- Reference <%= link_to @tag_alias.forum_topic_id, forum_topic_path(@tag_alias.forum_topic_id) %>
+ Reference <%= link_to "topic ##{@tag_alias.forum_topic_id}", forum_topic_path(@tag_alias.forum_topic_id) %>
<% end %>
Creator <%= link_to_user @tag_alias.creator %>
Date <%= @tag_alias.created_at %>
diff --git a/app/views/tag_implications/show.html.erb b/app/views/tag_implications/show.html.erb
index d4a5046df..00e4a5c2b 100644
--- a/app/views/tag_implications/show.html.erb
+++ b/app/views/tag_implications/show.html.erb
@@ -4,7 +4,7 @@
From <%= link_to @tag_implication.antecedent_name, posts_path(:tags => @tag_implication.antecedent_name) %>
To <%= link_to @tag_implication.consequent_name, posts_path(:tags => @tag_implication.consequent_name) %>
<% if @tag_implication.forum_topic_id %>
- Reference <%= link_to @tag_implication.forum_topic_id, forum_topic_path(@tag_implication.forum_topic_id) %>
+ Reference <%= link_to "topic ##{@tag_implication.forum_topic_id}, forum_topic_path(@tag_implication.forum_topic_id) %>
<% end %>
Creator <%= link_to_user @tag_implication.creator %>
Date <%= @tag_implication.created_at %>