mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user