From 20eff8a71b8b710723515e008077c7af3f0f99e7 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 3 Jul 2013 06:19:48 -0700 Subject: [PATCH] CRM-12783 - CRM_Core_CommunityMessages - Get content via HTTPS Note: I did a simulation with enable_ssl=false, and it degraded well. ---------------------------------------- * CRM-12783: As of 4.3, civicrm pulls in content by default from non-authenticated web site (http instead of https) http://issues.civicrm.org/jira/browse/CRM-12783 --- CRM/Core/CommunityMessages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/CommunityMessages.php b/CRM/Core/CommunityMessages.php index f2971c3e0d..08b9caf5b2 100644 --- a/CRM/Core/CommunityMessages.php +++ b/CRM/Core/CommunityMessages.php @@ -30,7 +30,7 @@ */ class CRM_Core_CommunityMessages { - const DEFAULT_MESSAGES_URL = 'http://alert.civicrm.org/alert?prot=1&ver={ver}&uf={uf}&sid={sid}&lang={lang}&co={co}'; + const DEFAULT_MESSAGES_URL = 'https://alert.civicrm.org/alert?prot=1&ver={ver}&uf={uf}&sid={sid}&lang={lang}&co={co}'; const DEFAULT_PERMISSION = 'administer CiviCRM'; /** -- 2.25.1