##// END OF EJS Templates
Email address should be lowercased for gravatar (#2145)....
Jean-Philippe Lang -
r1986:4581baa5c0b6
parent child
Show More
@@ -563,7 +563,7 module ApplicationHelper
563
563
564 def gravatar_for_mail(mail, options = { })
564 def gravatar_for_mail(mail, options = { })
565 if Setting.gravatar_enabled?
565 if Setting.gravatar_enabled?
566 return gravatar(mail, options) rescue nil
566 return gravatar(mail.to_s.downcase, options) rescue nil
567 end
567 end
568 end
568 end
569
569
General Comments 0
You need to be logged in to leave comments. Login now