From f884900a1b1cdfc31309a6fce495c0e42be5c9c8 Mon Sep 17 00:00:00 2001
From: Taekus <taek@taek.us>
Date: Mon, 18 May 2015 07:45:41 -0700
Subject: [PATCH] Update gravatar.php

changed from http://www.gravatar.com to https://secure.gravatar.com. This should have been default so that any friendica site using ssl would not have to edit this to have a completed ssl setup.
---
 gravatar/gravatar.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gravatar/gravatar.php b/gravatar/gravatar.php
index c23d1b30f..eb38db78f 100644
--- a/gravatar/gravatar.php
+++ b/gravatar/gravatar.php
@@ -42,7 +42,7 @@ function gravatar_lookup($a, &$b) {
 
 	$hash = md5(trim(strtolower($b['email'])));
 
-	$url = 'http://www.gravatar.com/avatar/' .$hash .'.jpg';
+	$url = 'https://secure.gravatar.com/avatar/' .$hash .'.jpg';
 	$url .= '?s=' .$b['size'] .'&r=' .$rating;
 	if ($default_avatar != "gravatar")
 		$url .= '&d=' .$default_avatar;