summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2016-09-11 07:55:30 -0400
committerAnthony G. Basile <blueness@gentoo.org>2016-09-11 07:55:30 -0400
commit665c15ca32b65c69491c564860f89d932ef774ec (patch)
treec65975754c261f1e99cd987e1095b2b27e702d87 /plugins/jetpack/class.json-api-endpoints.php
parentUpdate theme mantra to 2.6.0 (diff)
downloadblogs-gentoo-665c15ca32b65c69491c564860f89d932ef774ec.tar.gz
blogs-gentoo-665c15ca32b65c69491c564860f89d932ef774ec.tar.bz2
blogs-gentoo-665c15ca32b65c69491c564860f89d932ef774ec.zip
Update plugin jetpack to 4.3.1
Diffstat (limited to 'plugins/jetpack/class.json-api-endpoints.php')
-rw-r--r--plugins/jetpack/class.json-api-endpoints.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/jetpack/class.json-api-endpoints.php b/plugins/jetpack/class.json-api-endpoints.php
index 934def31..5d4eb288 100644
--- a/plugins/jetpack/class.json-api-endpoints.php
+++ b/plugins/jetpack/class.json-api-endpoints.php
@@ -1032,7 +1032,7 @@ abstract class WPCOM_JSON_API_Endpoint {
$last_name = '';
$URL = $author->comment_author_url;
$avatar_URL = $this->api->get_avatar_url( $author );
- $profile_URL = 'http://en.gravatar.com/' . md5( strtolower( trim( $email ) ) );
+ $profile_URL = 'https://en.gravatar.com/' . md5( strtolower( trim( $email ) ) );
$nice = '';
$site_id = -1;
@@ -1095,9 +1095,9 @@ abstract class WPCOM_JSON_API_Endpoint {
if ( defined( 'IS_WPCOM' ) && IS_WPCOM && ! $is_jetpack ) {
$active_blog = get_active_blog_for_user( $ID );
$site_id = $active_blog->blog_id;
- $profile_URL = "http://en.gravatar.com/{$login}";
+ $profile_URL = "https://en.gravatar.com/{$login}";
} else {
- $profile_URL = 'http://en.gravatar.com/' . md5( strtolower( trim( $email ) ) );
+ $profile_URL = 'https://en.gravatar.com/' . md5( strtolower( trim( $email ) ) );
$site_id = -1;
}