From df45a628c561c24eb60a2b7264c30b78c6fd429e Mon Sep 17 00:00:00 2001 From: Vittorio Cuculo Date: Thu, 24 Nov 2011 09:17:13 +0100 Subject: [PATCH 1/2] Fix typo --- config/initializers/fetch_featured_users.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/fetch_featured_users.rb b/config/initializers/fetch_featured_users.rb index 039978841..f9626ddba 100644 --- a/config/initializers/fetch_featured_users.rb +++ b/config/initializers/fetch_featured_users.rb @@ -2,7 +2,7 @@ if AppConfig[:featured_users].present? && AppConfig[:community_spotlight].blank? AppConfig[:community_spotlight] = AppConfig[:featured_users] - puts "DEPRICATION WARNING (10/21/11): Please change `featured_users` in your applicaiton.yml to `community_spotlight`. Thanks!" + puts "DEPRICATION WARNING (10/21/11): Please change `featured_users` in your application.yml to `community_spotlight`. Thanks!" end unless !ActiveRecord::Base.connection.table_exists?('people') || Rails.env == 'test' || AppConfig[:community_spotlight].nil? || AppConfig[:community_spotlight].count == Person.community_spotlight.count From fdd52782d2813bce05728ad0170f384e4c60064a Mon Sep 17 00:00:00 2001 From: Vittorio Cuculo Date: Thu, 24 Nov 2011 09:42:15 +0100 Subject: [PATCH 2/2] show diaspora_handle on profile [mobile] --- app/views/people/show.mobile.haml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/people/show.mobile.haml b/app/views/people/show.mobile.haml index c07b90bf9..fc166e0b4 100644 --- a/app/views/people/show.mobile.haml +++ b/app/views/people/show.mobile.haml @@ -10,6 +10,8 @@ = person_image_tag @person, :thumb_medium %h2 = @person.name + %span.description + = @person.diaspora_handle - if user_signed_in? && !(@contact.persisted? || current_user.person == @person) - if @incoming_request