这个提交包含在:
Peter Goodhall 2016-01-15 23:12:42 +00:00
父节点 3fe0977554
当前提交 9e6b19bc52
共有 2 个文件被更改,包括 3 次插入2 次删除

查看文件

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

查看文件

@ -10,7 +10,7 @@ class Hamqth {
// Return session key // Return session key
public function session($username, $password) { public function session($username, $password) {
// URL to the XML Source // 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 // CURL Functions
$ch = curl_init(); $ch = curl_init();
@ -33,7 +33,7 @@ class Hamqth {
$ci = & get_instance(); $ci = & get_instance();
// URL to the XML Source // 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 // CURL Functions
$ch = curl_init(); $ch = curl_init();