diff --git a/app/views/people/show.mobile.haml b/app/views/people/show.mobile.haml index 08e14a182..08a78a86e 100644 --- a/app/views/people/show.mobile.haml +++ b/app/views/people/show.mobile.haml @@ -7,7 +7,7 @@ DIASPORA* #author_info.profile - - unless @contact.persisted? || current_user.person == @person + - if user_signed_in? && !(@contact.persisted? || current_user.person == @person) .right = link_to "start sharing", {:controller => "contact", @@ -24,7 +24,7 @@ .description = @person.diaspora_handle -- unless @contact.persisted? || current_user.person == @person +- if user_signed_in? && !(@contact.persisted? || current_user.person == @person) - if @incoming_request .floating %h3 diff --git a/app/views/shared/_publisher.mobile.haml b/app/views/shared/_publisher.mobile.haml index 380c4500c..7f850d4ad 100644 --- a/app/views/shared/_publisher.mobile.haml +++ b/app/views/shared/_publisher.mobile.haml @@ -14,7 +14,7 @@ #publisher_text = t('.whats_on_your_mind') - = status.text_area :message + = status.text_area :text - for aspect_id in @aspect_ids = hidden_field_tag 'aspect_ids[]', aspect_id.to_s diff --git a/public/javascripts/widgets/embedder.js b/public/javascripts/widgets/embedder.js index 02f917905..68b84ca46 100644 --- a/public/javascripts/widgets/embedder.js +++ b/public/javascripts/widgets/embedder.js @@ -83,4 +83,4 @@ }; Diaspora.widgets.add("embedder", Embedder); -})(); \ No newline at end of file +})();