mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Possibly fixes the last of the clublog errors
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user