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

这个提交包含在:
Peter Goodhall 2018-12-26 14:30:32 +00:00
父节点 9263af62bd
当前提交 b99fe4de80

查看文件

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