More code changes
这个提交包含在:
父节点
dcf3548cff
当前提交
cb2ba3fd8d
共有 1 个文件被更改,包括 3 次插入 和 4 次删除
|
|
@ -66,13 +66,12 @@ class Clublog extends CI_Controller {
|
|||
curl_setopt($request, CURLOPT_RETURNTRANSFER, true);
|
||||
echo curl_exec($request);
|
||||
|
||||
$results = $request;
|
||||
$results = strval($request);
|
||||
|
||||
// close the session
|
||||
curl_close($request);
|
||||
$check = strpos($results, 'accepted');
|
||||
|
||||
// If Clublog Accepts mark the QSOs
|
||||
if (strpos($results, 'accepted') !== false) {
|
||||
if ($check !== false) {
|
||||
$this->clublog_model->mark_qsos_sent();
|
||||
|
||||
echo "QSOs uploaded and Logbook QSOs marked as sent to Clublog";
|
||||
|
|
|
|||
正在加载…
在新工单中引用