Merge branch 'master' of github.com:diaspora/diaspora_rails
This commit is contained in:
commit
70ece3c180
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ module ApplicationHelper
|
|||
when "User"
|
||||
user_path(person)
|
||||
else
|
||||
link_to "unknown person", "#"
|
||||
"unknown person"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class Person
|
|||
before_validation :clean_url
|
||||
|
||||
def real_name
|
||||
profile.first_name + " " + profile.last_name
|
||||
profile.first_name.to_s + " " + profile.last_name.to_s
|
||||
end
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue