From 1dfa0209d13cc56815747dd0bbff2feee9e6c994 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Fri, 5 Jul 2024 15:39:33 +0200 Subject: [PATCH] dunno why we used http here.... --- application/libraries/Qrz.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/libraries/Qrz.php b/application/libraries/Qrz.php index da8cc5829..a666e8ac5 100755 --- a/application/libraries/Qrz.php +++ b/application/libraries/Qrz.php @@ -10,7 +10,7 @@ class Qrz { // Return session key public function session($username, $password) { // URL to the XML Source - $xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=wavelog'; + $xml_feed_url = 'https://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=wavelog'; // CURL Functions $ch = curl_init(); @@ -35,7 +35,7 @@ class Qrz { $ci = & get_instance(); // URL to the XML Source - $xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=wavelog'; + $xml_feed_url = 'https://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=wavelog'; // CURL Functions $ch = curl_init(); @@ -62,7 +62,7 @@ class Qrz { $data = null; try { // URL to the XML Source - $xml_feed_url = 'http://xmldata.qrz.com/xml/current/?s=' . $key . ';callsign=' . $callsign . ''; + $xml_feed_url = 'https://xmldata.qrz.com/xml/current/?s=' . $key . ';callsign=' . $callsign . ''; // CURL Functions $ch = curl_init();