From 85787814e911925bc856d0f733ab79c3f248b4ae Mon Sep 17 00:00:00 2001 From: Toks Date: Tue, 17 Sep 2013 13:38:59 -0400 Subject: [PATCH] #1929: Fix user links --- app/views/tag_aliases/show.html.erb | 2 +- app/views/tag_implications/show.html.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 %>