diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php
index 21953e12..f990ee06 100644
--- a/application/controllers/Eqsl.php
+++ b/application/controllers/Eqsl.php
@@ -108,16 +108,16 @@ class eqsl extends CI_Controller {
if ($this->input->post('eqslimport') == 'fetch')
{
- echo "import from clublog ADIF
";
+ //echo "import from clublog ADIF
";
$file = $config['upload_path'] . 'eqslreport_download.adi';
- echo "
Download File: ".$file."
";
+ //echo "
Download File: ".$file."
";
// Get credentials for eQSL
$query = $this->user_model->get_by_id($this->session->userdata('user_id'));
$q = $query->row();
$data['user_eqsl_name'] = $q->user_eqsl_name;
$data['user_eqsl_password'] = $q->user_eqsl_password;
- echo "
Username".$data['user_eqsl_name']."
";
+ //echo "
Username".$data['user_eqsl_name']."
";
// Get URL for downloading the eqsl.cc inbox
$query = $query = $this->db->query('SELECT eqsl_download_url FROM config');
@@ -148,7 +148,7 @@ class eqsl extends CI_Controller {
// Pull back only confirmations
$eqsl_url .= "&ConfirmedOnly=1";
- echo "
".$eqsl_url."
";
+ //echo "
".$eqsl_url."
";
// At this point, what we get isn't the ADI file we need, but rather
// an HTML page, which contains a link to the generated ADI file that we want.