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

pull/248/head
Peter Goodhall 2018-12-26 14:30:32 +00:00
rodzic 9263af62bd
commit b99fe4de80
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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