mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Improved some text output rendering
This commit is contained in:
parent
7952ec76f7
commit
de491981d4
1 changed files with 3 additions and 3 deletions
|
|
@ -99,11 +99,11 @@ class Clublog extends CI_Controller {
|
|||
|
||||
// If Clublog Accepts mark the QSOs
|
||||
if (preg_match('/\baccepted\b/', $response)) {
|
||||
echo "QSOs uploaded and Logbook QSOs marked as sent to Clublog";
|
||||
echo "QSOs uploaded and Logbook QSOs marked as sent to Clublog"."<br>";
|
||||
|
||||
$this->load->model('clublog_model');
|
||||
$this->clublog_model->mark_qsos_sent($station_row->station_id);
|
||||
echo "Clublog upload for ".$station_row->station_callsign;
|
||||
echo "Clublog upload for ".$station_row->station_callsign."<br>";
|
||||
log_message('info', 'Clublog upload for '.$station_row->station_callsign.' successfully sent.');
|
||||
} else {
|
||||
echo "Error ".$response;
|
||||
|
|
@ -116,7 +116,7 @@ class Clublog extends CI_Controller {
|
|||
}
|
||||
|
||||
} else {
|
||||
echo "Nothing awaiting upload to clublog for ".$station_row->station_callsign;
|
||||
echo "Nothing awaiting upload to clublog for ".$station_row->station_callsign."<br>";
|
||||
|
||||
log_message('info', 'Nothing awaiting upload to clublog for '.$station_row->station_callsign);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue