diff --git a/app/views/tag_aliases/show.html.erb b/app/views/tag_aliases/show.html.erb index ddb9c41aa..6a64775dd 100644 --- a/app/views/tag_aliases/show.html.erb +++ b/app/views/tag_aliases/show.html.erb @@ -6,7 +6,7 @@ <% if @tag_alias.forum_topic_id %>
  • Reference <%= link_to @tag_alias.forum_topic_id, forum_topic_path(@tag_alias.forum_topic_id) %>
  • <% end %> -
  • Creator <%= link_to @tag_alias.creator.name, user_path(@tag_alias.creator) %>
  • +
  • Creator <%= link_to_user @tag_alias.creator %>
  • Date <%= @tag_alias.created_at %>
  • <% if @tag_alias.respond_to?(:reason) %>
  • Reason <%= format_text @tag_alias.reason %>
  • diff --git a/app/views/tag_implications/show.html.erb b/app/views/tag_implications/show.html.erb index c0e730591..d4a5046df 100644 --- a/app/views/tag_implications/show.html.erb +++ b/app/views/tag_implications/show.html.erb @@ -6,7 +6,7 @@ <% if @tag_implication.forum_topic_id %>
  • Reference <%= link_to @tag_implication.forum_topic_id, forum_topic_path(@tag_implication.forum_topic_id) %>
  • <% end %> -
  • Creator <%= link_to @tag_implication.creator.name, user_path(@tag_implication.creator) %>
  • +
  • Creator <%= link_to_user @tag_implication.creator %>
  • Date <%= @tag_implication.created_at %>
  • <% if @tag_implication.respond_to?(:reason) %>
  • Reason <%= format_text @tag_implication.reason %>