diff --git a/app/models/user.rb b/app/models/user.rb index e051000..804a831 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -56,6 +56,13 @@ class User < ActiveRecord::Base cattr_reader :per_page @@per_page = 50 + # display the user's website correctly + def display_website + output = self.website + output = "http://#{website}" if output.present? && output.index('http') != 0 + return output + end + # get the user's time zone or UTC time def time_zone_or_utc; time_zone || 'UTC'; end diff --git a/app/views/users/profile.html.erb b/app/views/users/profile.html.erb index 995e9c0..cff7293 100644 --- a/app/views/users/profile.html.erb +++ b/app/views/users/profile.html.erb @@ -8,7 +8,7 @@