From ee3ac62f03e63979fa9f229104e2022f577f3cc2 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Fri, 21 Aug 2020 17:20:51 +0100 Subject: [PATCH] removed test code from controller --- application/controllers/Dashboard.php | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php index 25ea60d0..6c45dcab 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -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(); - - } }