Possibly fixes the last of the clublog errors

pull/302/head
Peter Goodhall 2019-06-20 15:16:53 +01:00
rodzic d16874e1b4
commit d6acdce80d
2 zmienionych plików z 7 dodań i 4 usunięć

Wyświetl plik

@ -80,9 +80,10 @@ class Clublog extends CI_Controller {
$info = curl_getinfo($request);
if(curl_errno($request)) {
echo 'Curl error: '.curl_error($request);
$catch_error = curl_error($request);
}
curl_close ($request);
curl_close ($request);
// If Clublog Accepts mark the QSOs
if (preg_match('/\baccepted\b/', $response)) {
@ -90,8 +91,10 @@ class Clublog extends CI_Controller {
echo "QSOs uploaded and Logbook QSOs marked as sent to Clublog";
} else {
echo "some other issue";
echo $catch_error;
}
}
} else {
echo "Nothing awaiting upload to clublog";

Wyświetl plik

@ -20,7 +20,7 @@ class Clublog_model extends CI_Model {
'COL_CLUBLOG_QSO_UPLOAD_STATUS' => "Y",
);
$this->db->where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "");
$this->db->where("COL_CLUBLOG_QSO_UPLOAD_STATUS", null);
$this->db->or_where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "N");
$this->db->update($this->config->item('table_name'), $data);
}