diff --git a/app/views/comments/_new_comment.html.haml b/app/views/comments/_new_comment.html.haml
index 1dd3aaa28..5e777f4da 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 ff1797a32..5c45327e8 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|