fixed #1104 wrong profile picture size

This commit is contained in:
Sebastian 2011-05-31 19:06:35 +02:00
parent 35a0a13b5e
commit d4d0eacf49
2 changed files with 2 additions and 2 deletions

View file

@ -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}"

View file

@ -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|