Skip to content

Commit

Permalink
dunno why we used http here....
Browse files Browse the repository at this point in the history
  • Loading branch information
HB9HIL committed Jul 5, 2024
1 parent 53d51ca commit 1dfa020
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/libraries/Qrz.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -35,7 +35,7 @@ public function set_session($username, $password) {
$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();
Expand All @@ -62,7 +62,7 @@ public function search($callsign, $key, $use_fullname = false, $reduced = false)
$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();
Expand Down

0 comments on commit 1dfa020

Please sign in to comment.