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