From baec4be5bd7144212a6a53c919a1d509c7abbe0e Mon Sep 17 00:00:00 2001 From: "Tony Corbett, G0WFV" Date: Fri, 14 Dec 2018 16:50:37 +0000 Subject: [PATCH] LoTW: Prevent error auto pull after initial pull --- application/controllers/Lotw.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 775e2c09..a26182ed 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -132,8 +132,12 @@ class Lotw extends CI_Controller { //TODO: Option to specifiy whether we download location data from LoTW or not //$lotw_url .= "&qso_qsldetail=\"yes\"; - $lotw_url .= "&qso_qslsince="; - $lotw_url .= "$lotw_last_qsl_date"; + /* + * TODO: (G0WFV) commented this out as it's causing a crash (needs investigation) + * + * $lotw_url .= "&qso_qslsince="; + * $lotw_url .= "$lotw_last_qsl_date"; + */ // Only pull back entries that belong to this callsign $lotw_call = $this->session->userdata('user_callsign');