Check if Band/Mode is provided. Sometimes there are hiccups where Band/Mode is not given

这个提交包含在:
int2001 2023-11-29 18:32:42 +00:00
父节点 7351fe58fa
当前提交 9831934ff0
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B

查看文件

@ -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)