Check if Band/Mode is provided. Sometimes there are hiccups where Band/Mode is not given
这个提交包含在:
父节点
7351fe58fa
当前提交
9831934ff0
共有 1 个文件被更改,包括 2 次插入 和 0 次删除
|
|
@ -46,6 +46,8 @@ class QSO extends CI_Controller {
|
|||
$this->form_validation->set_rules('start_date', 'Date', 'required');
|
||||
$this->form_validation->set_rules('start_time', 'Time', 'required');
|
||||
$this->form_validation->set_rules('callsign', 'Callsign', 'required');
|
||||
$this->form_validation->set_rules('band', 'Band', 'required');
|
||||
$this->form_validation->set_rules('mode', 'Mode', 'required');
|
||||
$this->form_validation->set_rules('locator', 'Locator', 'callback_check_locator');
|
||||
|
||||
if ($this->form_validation->run() == FALSE)
|
||||
|
|
|
|||
正在加载…
在新工单中引用