Use image_url instead of nasty hacks
This commit is contained in:
parent
f289c1092c
commit
be7cc77397
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ module UserHelper
|
|||
if user.image_use_gravatar
|
||||
user_gravatar_url(user, options)
|
||||
else
|
||||
"http://#{SERVER_URL}#{image_path(user.image.url)}"
|
||||
image_url(user.image.url)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -60,7 +60,7 @@ module UserHelper
|
|||
def user_gravatar_url(user, options = {})
|
||||
size = options[:size] || 100
|
||||
hash = Digest::MD5::hexdigest(user.email.downcase)
|
||||
default_image_url = "http://#{SERVER_URL}#{image_path("users/images/large.png")}"
|
||||
default_image_url = image_url("users/images/large.png")
|
||||
url = "http://www.gravatar.com/avatar/#{hash}.jpg?s=#{size}&d=#{u(default_image_url)}"
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue