pull/179/head
Peter Goodhall 2016-01-15 23:12:42 +00:00
rodzic 3fe0977554
commit 9e6b19bc52
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -122,6 +122,7 @@ class Logbook extends CI_Controller {
if($this->logbook_model->call_qra($qra)) {
echo $this->logbook_model->call_qra($qra);
} else {
echo "callbook info:";
if ($this->config->item('callbook') == "qrz" && $this->config->item('qrz_username') != null && $this->config->item('qrz_password') != null) {
// Lookup using QRZ
$this->load->library('qrz');

Wyświetl plik

@ -10,7 +10,7 @@ class Hamqth {
// Return session key
public function session($username, $password) {
// URL to the XML Source
$xml_feed_url = 'https://www.hamqth.com/xml.php?u='.$username.';p='.$password;
$xml_feed_url = 'https://www.hamqth.com/xml.php?u='.$username.'&p='.$password;
// CURL Functions
$ch = curl_init();
@ -33,7 +33,7 @@ class Hamqth {
$ci = & get_instance();
// URL to the XML Source
$xml_feed_url = 'https://www.hamqth.com/xml.php?u='.$username.';p='.$password;
$xml_feed_url = 'https://www.hamqth.com/xml.php?u='.$username.'&p='.$password;
// CURL Functions
$ch = curl_init();