removed test code from controller

pull/580/head^2
Peter Goodhall 2020-08-21 17:20:51 +01:00
rodzic 7a7372647f
commit ee3ac62f03
1 zmienionych plików z 1 dodań i 9 usunięć

Wyświetl plik

@ -34,7 +34,7 @@ class Dashboard extends CI_Controller {
$this->load->model('stations');
$data['current_active'] = $this->stations->find_active();
// Store info
$data['todays_qsos'] = $this->logbook_model->todays_qsos();
$data['total_qsos'] = $this->logbook_model->total_qsos();
@ -148,13 +148,5 @@ class Dashboard extends CI_Controller {
echo "}";
}
function test() {
$this->load->library('clublog');
echo $this->clublog->send();
}
}