fixes #63: Username "_" are not showing as a blank space in comments (minor)

This commit is contained in:
albert
2011-09-14 13:26:27 -04:00
parent a85374b56d
commit fcc6a78fd4

View File

@@ -50,7 +50,7 @@ class Comment < ActiveRecord::Base
end
def creator_name
creator.name
creator.name.tr("_", " ")
end
def editable_by?(user)