https instead of http

This commit is contained in:
Diego Najar 2019-08-21 20:50:11 +02:00
parent e8547253fd
commit 4662bde3b9
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class pluginSitemap extends Plugin {
private function ping()
{
if ($this->getValue('pingGoogle')) {
$url = 'http://www.google.com/ping?sitemap='.Theme::sitemapUrl();
$url = 'https://www.google.com/ping?sitemap='.Theme::sitemapUrl();
TCP::http($url, 'GET', true, 3);
}