Updated QSO Entry fixed bug where after making a qso it only returned the last 10 logged qsos instead of 16

This commit is contained in:
Peter Goodhall
2018-12-26 14:30:32 +00:00
parent 9263af62bd
commit b99fe4de80

View File

@@ -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";