Merge pull request #650 from yolk/1104-wrong-profile-picture-size

fixed #1104 wrong profile picture size
This commit is contained in:
Jonne Hass 2011-05-31 10:33:26 -07:00
commit 1be2845687
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
-# the COPYRIGHT file. -# the COPYRIGHT file.
= form_tag( comments_path, :id => "new_comment_on_#{post_id}", :class => 'new_comment', :remote => true) do = 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 %p
= label_tag "comment_text_on_#{post_id}", t('.comment') = 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}" = 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 = render :partial => 'messages/message', :collection => conversation.messages
.stream_element.new_message .stream_element.new_message
= owner_image_tag = owner_image_tag(:thumb_small)
.content .content
= form_for [conversation, Message.new] do |message| = form_for [conversation, Message.new] do |message|