From 2b00066334ca3594f6b94b4ef87783d9b78d4670 Mon Sep 17 00:00:00 2001 From: Toks Date: Mon, 21 Oct 2013 12:50:19 -0400 Subject: [PATCH] Fix display of subscriptions on profiles --- app/presenters/user_presenter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/presenters/user_presenter.rb b/app/presenters/user_presenter.rb index 4ceb9d0ee..980a6be4b 100644 --- a/app/presenters/user_presenter.rb +++ b/app/presenters/user_presenter.rb @@ -36,7 +36,7 @@ class UserPresenter end def tag_links_for_subscription(template, subscription) - subscription.tag_query_array.map {|x| template.link_to(x.tr("_", " "), template.posts_path(:tags => x))}.join(", ").html_safe + subscription.tag_query_array.map {|x| template.link_to(x, template.posts_path(:tags => x))}.join(", ").html_safe end def upload_limit