From fcc6a78fd444b43c8e37422915b3eb57b4d12788 Mon Sep 17 00:00:00 2001 From: albert Date: Wed, 14 Sep 2011 13:26:27 -0400 Subject: [PATCH] fixes #63: Username "_" are not showing as a blank space in comments (minor) --- app/models/comment.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/comment.rb b/app/models/comment.rb index a974527fb..8f58c5835 100644 --- a/app/models/comment.rb +++ b/app/models/comment.rb @@ -50,7 +50,7 @@ class Comment < ActiveRecord::Base end def creator_name - creator.name + creator.name.tr("_", " ") end def editable_by?(user)