Possibly fixes the last of the clublog errors

这个提交包含在:
Peter Goodhall 2019-06-20 15:16:53 +01:00
父节点 d16874e1b4
当前提交 d6acdce80d
共有 2 个文件被更改,包括 7 次插入4 次删除

查看文件

@ -80,9 +80,10 @@ class Clublog extends CI_Controller {
$info = curl_getinfo($request); $info = curl_getinfo($request);
if(curl_errno($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 Clublog Accepts mark the QSOs
if (preg_match('/\baccepted\b/', $response)) { 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"; echo "QSOs uploaded and Logbook QSOs marked as sent to Clublog";
} else { } else {
echo "some other issue"; echo $catch_error;
} }
} }
} else { } else {
echo "Nothing awaiting upload to clublog"; echo "Nothing awaiting upload to clublog";

查看文件

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