From: Jean-Philippe Lang Date: Sat, 7 Apr 2018 07:30:20 +0000 (+0000) Subject: Merged r17263 into 3.3-stable (#28208). X-Git-Tag: 3.3.7~8 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b683b195a102e9e5c9fadc8f8781c5edab6f2eb9;p=redmine.git Merged r17263 into 3.3-stable (#28208). git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@17265 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 2b8054934..76b789b45 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1280,11 +1280,13 @@ module ApplicationHelper end if email.present? gravatar(email.to_s.downcase, options) rescue nil - else + elsif user.is_a?(AnonymousUser) options[:size] &&= options[:size].to_s image_tag 'anonymous.png', GravatarHelper::DEFAULT_OPTIONS .except(:default, :rating, :ssl).merge(options) + else + nil end else ''