Catch error didn't like being put in an array

pull/302/head
Peter Goodhall 2019-06-20 15:43:58 +01:00
rodzic c126df2fb3
commit 4816240d9b
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -80,7 +80,7 @@ class Clublog extends CI_Controller {
$info = curl_getinfo($request);
if(curl_errno($request)) {
$catch_error = curl_error($request);
echo curl_error($request);
}
curl_close ($request);
@ -92,7 +92,7 @@ class Clublog extends CI_Controller {
$this->load->model('clublog_model');
$this->clublog_model->mark_qsos_sent();
} else {
echo $catch_error;
echo "Error";
}
}