Updated QSO Entry fixed bug where after making a qso it only returned the last 10 logged qsos instead of 16
这个提交包含在:
父节点
9263af62bd
当前提交
b99fe4de80
共有 1 个文件被更改,包括 2 次插入 和 2 次删除
|
|
@ -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";
|
||||
|
|
|
|||
正在加载…
在新工单中引用