diff --git a/app/views/comments/_new_comment.html.haml b/app/views/comments/_new_comment.html.haml index 1dd3aaa2882df33424e3b0b22c6082b8efb8215e..5e777f4da6f5cbdeb346dda44932c5a5bc8c6387 100644 --- a/app/views/comments/_new_comment.html.haml +++ b/app/views/comments/_new_comment.html.haml @@ -3,7 +3,7 @@ -# the COPYRIGHT file. = form_tag( comments_path, :id => "new_comment_on_#{post_id}", :class => 'new_comment', :remote => true) do - = person_image_tag(current_user, nil) + = person_image_tag(current_user) %p = label_tag "comment_text_on_#{post_id}", t('.comment') = text_area_tag :text, nil, :rows => 2, :class => "comment_box",:id => "comment_text_on_#{post_id}" diff --git a/app/views/conversations/_show.haml b/app/views/conversations/_show.haml index ff1797a323af0551484594dc1b53b1b461c4fff4..5c45327e85fc8a7ad9d6a3ead7a0698bfeac4dd7 100644 --- a/app/views/conversations/_show.haml +++ b/app/views/conversations/_show.haml @@ -27,7 +27,7 @@ = render :partial => 'messages/message', :collection => conversation.messages .stream_element.new_message - = owner_image_tag + = owner_image_tag(:thumb_small) .content = form_for [conversation, Message.new] do |message|