]> source.dussan.org Git - redmine.git/commitdiff
Use protocol-relative URL for gravatars (#21855).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 15 Mar 2016 21:52:20 +0000 (21:52 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 15 Mar 2016 21:52:20 +0000 (21:52 +0000)
Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@15245 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb
lib/plugins/gravatar/lib/gravatar.rb

index 9ceca33d44d22b6bd6e76d0f15f4d21eae51e500..f4ce316d172511df141ee9728f088c96ae80bca2 100644 (file)
@@ -1244,7 +1244,7 @@ module ApplicationHelper
   # +user+ can be a User or a string that will be scanned for an email address (eg. 'joe <joe@foo.bar>')
   def avatar(user, options = { })
     if Setting.gravatar_enabled?
-      options.merge!({:ssl => (request && request.ssl?), :default => Setting.gravatar_default})
+      options.merge!(:default => Setting.gravatar_default)
       email = nil
       if user.respond_to?(:mail)
         email = user.mail
index a0b1241b21c637ef12440d22273d33cadbc3aba7..93c45b25c5f8eeb0078b0d971d3803b5136a46a5 100644 (file)
@@ -55,15 +55,9 @@ module GravatarHelper
       image_tag src, options
     end
     
-    # Returns the base Gravatar URL for the given email hash. If ssl evaluates to true,
-    # a secure URL will be used instead. This is required when the gravatar is to be 
-    # displayed on a HTTPS site.
-    def gravatar_api_url(hash, ssl=false)
-      if ssl
-        "https://secure.gravatar.com/avatar/#{hash}"
-      else
-        "http://www.gravatar.com/avatar/#{hash}"
-      end
+    # Returns the base Gravatar URL for the given email hash
+    def gravatar_api_url(hash)
+      "//www.gravatar.com/avatar/#{hash}"
     end
 
     # Return the gravatar URL for the given email address.
@@ -71,7 +65,7 @@ module GravatarHelper
       email_hash = Digest::MD5.hexdigest(email)
       options = DEFAULT_OPTIONS.merge(options)
       options[:default] = CGI::escape(options[:default]) unless options[:default].nil?
-      gravatar_api_url(email_hash, options.delete(:ssl)).tap do |url|
+      gravatar_api_url(email_hash).tap do |url|
         opts = []
         [:rating, :size, :default].each do |opt|
           unless options[opt].nil?