From b99fe4de80a5a9d16cb870cb354185fbfa061785 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Wed, 26 Dec 2018 14:30:32 +0000 Subject: [PATCH] Updated QSO Entry fixed bug where after making a qso it only returned the last 10 logged qsos instead of 16 --- application/controllers/Qso.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 13c0d13f..1c89ecf7 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -63,8 +63,8 @@ class QSO extends CI_Controller { $this->session->set_userdata($qso_data); - // Get last Ten QSOs - $data['query'] = $this->logbook_model->last_ten(); + // Get last 16 qsos + $data['query'] = $this->logbook_model->last_custom('16'); // Set Any Notice Messages $data['notice'] = "QSO Added";