项目--文档--文件--代码评审 中用户头像显示错误

This commit is contained in:
linhk 2014-08-16 17:02:37 +08:00
parent 6b66a205b3
commit 4f0817a146
4 changed files with 7 additions and 3 deletions

View File

@ -1442,6 +1442,8 @@ module ApplicationHelper
email = $1
end
return gravatar(email.to_s.downcase, options) unless email.blank? rescue nil
#options ={"class" => ["avatar2"],"width" =>["80px"],"height" =>["80px"]}
#return image_tag url_to_avatar(user), options
else
''
end

View File

@ -20,7 +20,8 @@
<%= authoring reply.created_on, reply.user %>.
</p>
<%= avatar(reply.user, :size => "32") %>
<%= image_tag(url_to_avatar(reply.user), :class => 'avatar2', :width=>32, :height=>32) %>
<%#= avatar(reply.user, :size => "32") %>
<ul>
<% for detail in reply.details %>
<li><%= show_detail(detail) %></li>

View File

@ -62,7 +62,8 @@
<!-- author and creation time -->
<p class="author">
<%= avatar(@review.user, :size => "64") %>
<%= image_tag(url_to_avatar(@review.user), :class => 'avatar2', :width=>64, :height=>64) %>
<%#= avatar(@review.user, :size => "64") %>
<br />
<%= authoring @review.created_at, @review.user %>.
<%= l(:label_updated_time, distance_of_time_in_words(Time.now, @review.updated_at)) + '.' if @review.created_at != @review.updated_at %>